Skip to content

Commit fffe570

Browse files
committed
Don't change the scene's y clipping at all when changing the map y clipping.
1 parent 275c711 commit fffe570

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

chunky/src/java/se/llbit/chunky/ui/render/tabs/GeneralTab.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -517,13 +517,7 @@ private void updateYClipSlidersRanges(World world) {
517517
yMax.setRange(-64, 320);
518518
} else {
519519
yMin.setRange(0, 256);
520-
if (yMin.get() < 0) {
521-
yMin.set(0);
522-
}
523520
yMax.setRange(0, 256);
524-
if (yMax.get() > 256) {
525-
yMax.set(256);
526-
}
527521
}
528522
}
529523
}

0 commit comments

Comments
 (0)