fix update available check in preference tab selection

This commit is contained in:
Jan-Peter Klein
2024-07-09 13:46:41 +02:00
parent b4f9bc62ca
commit cb054bb4f5

View File

@@ -37,7 +37,7 @@ public class PreferencesController implements FxController {
this.env = env;
this.window = window;
this.selectedTabProperty = selectedTabProperty;
this.updateAvailable = updateChecker.latestVersionProperty().isNotNull();
this.updateAvailable = updateChecker.updateAvailableProperty();
}
@FXML