فهرست منبع

Merge pull request #3080 from purejava/fix-3079

Bring up the main window from the tray on pressing "Show" on the tray…
Armin Schrenk 1 سال پیش
والد
کامیت
cf248c5cbc
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      src/main/java/org/cryptomator/ui/mainwindow/MainWindowComponent.java

+ 1 - 0
src/main/java/org/cryptomator/ui/mainwindow/MainWindowComponent.java

@@ -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();