Skip to content

Commit

Permalink
Set use standby mode to false on non Win, OSX desktops
Browse files Browse the repository at this point in the history
  • Loading branch information
ghubstan committed Nov 18, 2019
1 parent ba0acd4 commit dd8fd30
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -814,6 +814,8 @@ private void activateDisplayPreferences() {
if (displayStandbyModeFeature) {
avoidStandbyMode.setSelected(!preferences.isUseStandbyMode());
avoidStandbyMode.setOnAction(e -> preferences.setUseStandbyMode(!avoidStandbyMode.isSelected()));
} else {
preferences.setUseStandbyMode(false);
}
}

Expand Down

0 comments on commit dd8fd30

Please sign in to comment.