Skip to content

Commit

Permalink
Fixed screen not unlocking
Browse files Browse the repository at this point in the history
  • Loading branch information
DAMcraft committed Aug 6, 2023
1 parent bc04a56 commit 87b2ede
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ public void initWidgets() {
if (error != null) {
clear();
add(theme.label(error)).expandX();
this.locked = false;
return;
}
clear();
Expand All @@ -281,6 +282,7 @@ public void initWidgets() {
add(theme.label("No servers found")).expandX();
WButton backButton = add(theme.button("Back")).expandX().widget();
backButton.action = this::reload;
this.locked = false;
return;
}
add(theme.label("Found " + servers.size() + " servers")).expandX();
Expand Down

0 comments on commit 87b2ede

Please sign in to comment.