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
No known key found for this signature in database
GPG Key ID: 90EDA3A7C822FD0E

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