We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c071238 commit 1b0b4b2Copy full SHA for 1b0b4b2
src/main/java/de/doubleslash/keeptime/view/SettingsController.java
@@ -76,10 +76,14 @@ public class SettingsController {
76
77
@FXML
78
private void initialize() {
79
- /*
80
- * if(System.getProperty("os.name").contains("Linux")) { useHotkeyCheckBox.setVisible(false);
81
- * useHotkeyLabel.setVisible(false); hotkeyLabel.setVisible(false); globalKeyloggerLabel.setVisible(false); }
82
- */
+
+ if (System.getProperty("os.name").contains("Linux")) {
+ useHotkeyCheckBox.setVisible(false);
+ useHotkeyLabel.setVisible(false);
83
+ hotkeyLabel.setVisible(false);
84
+ globalKeyloggerLabel.setVisible(false);
85
+ }
86
87
versionLabel.setText(Main.VERSION);
88
saveButton.setOnAction(ae -> {
89
log.info("Save clicked");
0 commit comments