Skip to content

Commit

Permalink
- bring settings dialog to front on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
derreisende77 committed Aug 26, 2024
1 parent d52dc46 commit 9429adc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/mediathek/mainwindow/MediathekGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,7 @@ protected void handleDownloadFinishedEvent(DownloadFinishedEvent msg) {
private void handleShowSettingsDialogEvent(ShowSettingsDialogEvent evt) {
SwingUtilities.invokeLater(() -> {
getSettingsDialog().setVisible(true);
if (!SystemUtils.IS_OS_MAC_OSX)
if (!SystemUtils.IS_OS_LINUX)
getSettingsDialog().toFront();
});
}
Expand Down

0 comments on commit 9429adc

Please sign in to comment.