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 2d88544 commit dc47a40Copy full SHA for dc47a40
src/main/java/com/stream_pi/client/window/settings/GeneralTab.java
@@ -643,8 +643,10 @@ else if(port > 65535)
643
644
config.setStartOnBoot(startOnBoot);
645
646
- config.setShowCursor(showCursorToggleSwitch.isSelected());
+ if(!config.isShowCursor() ==showCursorToggleSwitch.isSelected())
647
+ toBeReloaded = true;
648
649
+ config.setShowCursor(showCursorToggleSwitch.isSelected());
650
651
652
if(!config.getThemesPath().equals(themesPathTextField.getText()))
0 commit comments