Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
xzxADIxzx committed Oct 1, 2021
1 parent 3c37198 commit cbe3c28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/dialogs/ModSettingsMenuDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ public void rebuildMenu(){
}

void addSettings(){
mod.sliderPref("maxzoommul", 4, 4, 16, 1, i -> i / 4f + "x");
mod.sliderPref("minzoommul", 4, 4, 16, 1, i -> i / 4f + "x");
mod.sliderPref("maxzoommul", 4, 4, 20, 1, i -> i / 4f + "x");
mod.sliderPref("minzoommul", 4, 4, 20, 1, i -> i / 4f + "x");
mod.sliderPref("copysize", 512, 32, 512, 32, i -> Core.bundle.format("setting.blocks", i));
mod.sliderPref("breaksize", 512, 32, 512, 32, i -> Core.bundle.format("setting.blocks", i));
mod.checkPref("copyshow", true);
Expand Down

0 comments on commit cbe3c28

Please sign in to comment.