Skip to content

Commit

Permalink
You can use the menu button on the pause screen again
Browse files Browse the repository at this point in the history
  • Loading branch information
Vertex-Client authored Jan 14, 2017
1 parent c29ff68 commit 76be9fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Vertex Client PE Air.js
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ function VectorLib() {
var currentScreen = ScreenType.start_screen;

function screenChangeHook(screenName) {
if(screenName == ScreenType.start_screen || screenName == ScreenType.hud || screenName == ScreenType.ingame) {
if(screenName == ScreenType.start_screen || screenName == ScreenType.hud || screenName == ScreenType.ingame || screenName == ScreenType.pause_screen) {
CONTEXT.runOnUiThread(new Runnable_({
run: function() {
if(GUI != null) {
Expand Down Expand Up @@ -9379,7 +9379,7 @@ function showMenuButton() {
showShortcuts();
}
}
if(currentScreen == ScreenType.start_screen || currentScreen == ScreenType.ingame || currentScreen == ScreenType.hud) {
if(currentScreen == ScreenType.start_screen || currentScreen == ScreenType.ingame || currentScreen == ScreenType.hud || currentScreen == ScreenType.pause_screen) {
GUI.setTouchable(true);
GUI.update();
}
Expand Down

0 comments on commit 76be9fd

Please sign in to comment.