Skip to content

Commit

Permalink
Error on second login
Browse files Browse the repository at this point in the history
Fixes #1643
  • Loading branch information
1-alex98 committed Mar 29, 2020
1 parent 4ac25e1 commit f3fd4f3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/com/faforever/client/login/LoginController.java
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,9 @@ public void display() {
}

private void setShowLoginProgress(boolean show) {
if (show) {
loginErrorLabel.setVisible(false);
}
loginFormPane.setVisible(!show);
loginProgressPane.setVisible(show);
loginButton.setDisable(show);
Expand Down

0 comments on commit f3fd4f3

Please sign in to comment.