Skip to content

Commit

Permalink
Fix check for updates for release builds
Browse files Browse the repository at this point in the history
  • Loading branch information
zapek committed Dec 28, 2024
1 parent 2fa1e25 commit 03e35d2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -319,9 +319,10 @@ public void initialize()
systemProperties.setOnAction(event -> windowManager.openSystemProperties());
openShell.setOnAction(event -> MinimalUserInterface.openShell());
openUiCheck.setOnAction(event -> windowManager.openUiCheck());
versionCheck.setOnAction(even -> checkForUpdate());
}

versionCheck.setOnAction(even -> checkForUpdate());

exitApplication.setOnAction(event -> trayService.exitApplication());

setupNotifications();
Expand Down

0 comments on commit 03e35d2

Please sign in to comment.