removed unused label id

This commit is contained in:
Jan-Peter Klein 2024-05-08 08:30:06 +02:00
parent 249becc25d
commit 1581a10c04
No known key found for this signature in database
GPG Key ID: 90EDA3A7C822FD0E
2 changed files with 1 additions and 2 deletions

View File

@ -53,7 +53,6 @@ public class UpdatesPreferencesController implements FxController {
/* FXML */
public CheckBox checkForUpdatesCheckbox;
public Label upToDateLabel;
@Inject
UpdatesPreferencesController(Application application, Environment environment, ResourceBundle resourceBundle, Settings settings, UpdateChecker updateChecker) {

View File

@ -47,7 +47,7 @@
<Tooltip text="${controller.lastSuccessfulUpdateCheck}" showDelay="10ms"/>
</tooltip>
</FormattedLabel>
<Label fx:id="upToDateLabel" text="%preferences.updates.upToDate" visible="${controller.upToDateLabelVisible}" managed="${controller.upToDateLabelVisible}">
<Label text="%preferences.updates.upToDate" visible="${controller.upToDateLabelVisible}" managed="${controller.upToDateLabelVisible}">
<graphic>
<FontAwesome5IconView glyphSize="12" styleClass="glyph-icon-primary" glyph="CHECK"/>
</graphic>