Skip to content

Conversation

m1ga
Copy link
Contributor

@m1ga m1ga commented Dec 4, 2024

fixes #13791

var win1 = Ti.UI.createWindow({
	backgroundColor: "green"
})
win1.addEventListener("click", function() {
	var win2 = Ti.UI.createWindow({
		backgroundColor: "red"
	})
	win2.open();
})
win1.open();

Steps to reproduce

  • open the app (green window)
  • click to open the second window (red)
  • close the red window and close the green window right away
  • you will see the root activity

more infos in the ticket

@hansemannn hansemannn merged commit b830c4d into master Dec 4, 2024
4 of 5 checks passed
@hansemannn hansemannn deleted the androidCloseWindow branch December 4, 2024 11:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Android: closing two windows quickly won't close app
2 participants