Skip to content

Commit

Permalink
Merge pull request #1738 from hans109h/patch-1
Browse files Browse the repository at this point in the history
Update JavaFxWindowManager.java for #1619
  • Loading branch information
DSheirer authored Nov 15, 2023
2 parents 8717ce3 + 65d16da commit 82cb10a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/io/github/dsheirer/gui/JavaFxWindowManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,9 @@ private void restoreStage(Stage stage)
stage.show();
stage.requestFocus();
stage.toFront();
stage.setMinHeight(stage.getHeight());
stage.setMinWidth(stage.getWidth());
// System.out.println("Stage [" + stage.getTitle() + "] restored - width[" + stage.getWidth() + "] height [" + stage.getHeight() + "]");
}

@Override
Expand Down

0 comments on commit 82cb10a

Please sign in to comment.