Skip to content

Commit

Permalink
fix(ios): make Ti.UI.Window close/open run more async ala Android
Browse files Browse the repository at this point in the history
  • Loading branch information
sgtcoolguy committed Jun 22, 2020
1 parent 574fec6 commit 6a6fda4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iphone/TitaniumKit/TitaniumKit/Sources/API/TiWindowProxy.m
Expand Up @@ -273,7 +273,7 @@ - (void)open:(id)args
^{
[self openOnUIThread:args];
},
YES);
NO);
}

- (void)setStatusBarStyle:(id)style
Expand Down Expand Up @@ -329,7 +329,7 @@ - (void)close:(id)args
^{
[self closeOnUIThread:args];
},
YES);
NO);
}

- (NSNumber *)closed
Expand Down

0 comments on commit 6a6fda4

Please sign in to comment.