Bring up the main window from the tray on pressing "Show" on the tray menu for Windows

Fixes #3079
This commit is contained in:
Ralph Plawetzki
2023-08-19 19:14:46 +02:00
parent 8a7a5eeea1
commit bb1095eb78

View File

@@ -26,6 +26,7 @@ public interface MainWindowComponent {
default Stage showMainWindow() {
Stage stage = window();
stage.setScene(scene().get());
stage.setIconified(false);
stage.show();
stage.toFront();
stage.requestFocus();