We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ac6c10 commit d52dc46Copy full SHA for d52dc46
src/main/java/mediathek/mainwindow/MediathekGui.java
@@ -909,7 +909,11 @@ protected void handleDownloadFinishedEvent(DownloadFinishedEvent msg) {
909
910
@Handler
911
private void handleShowSettingsDialogEvent(ShowSettingsDialogEvent evt) {
912
- SwingUtilities.invokeLater(() -> getSettingsDialog().setVisible(true));
+ SwingUtilities.invokeLater(() -> {
913
+ getSettingsDialog().setVisible(true);
914
+ if (!SystemUtils.IS_OS_MAC_OSX)
915
+ getSettingsDialog().toFront();
916
+ });
917
}
918
919
/**
0 commit comments