Skip to content

Commit

Permalink
Made it possible to set the return to zero safety height to zero (#2321)
Browse files Browse the repository at this point in the history
  • Loading branch information
breiler committed Oct 6, 2023
1 parent 3cb05e4 commit 3b11911
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -52,7 +52,7 @@ public class ConnectionSettingsPanel extends AbstractUGSSettings {
new SpinnerNumberModel(1, 1, null, 100));
private final Spinner safetyHeight = new Spinner(
Localization.getString("sender.safety-height"),
new SpinnerNumberModel(1, 1, null, 1));
new SpinnerNumberModel(1, 0, null, 1));
private final Checkbox invertMouseZoom = new Checkbox(
Localization.getString("sender.invertMouseZoom"));
private final Checkbox showNightlyWarning = new Checkbox(
Expand Down

0 comments on commit 3b11911

Please sign in to comment.