From cdb8f5981f418cae946a3c3fd60c5891ed3f323c Mon Sep 17 00:00:00 2001 From: Juuxel <6596629+Juuxel@users.noreply.github.com> Date: Tue, 25 Feb 2020 21:22:08 +0200 Subject: Make list panels always have at least one cell visible If the children are higher than the layout height, they should still be partially visible. --- src/main/java/io/github/cottonmc/cotton/gui/widget/WListPanel.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/main') diff --git a/src/main/java/io/github/cottonmc/cotton/gui/widget/WListPanel.java b/src/main/java/io/github/cottonmc/cotton/gui/widget/WListPanel.java index 32e56c4..7c92191 100644 --- a/src/main/java/io/github/cottonmc/cotton/gui/widget/WListPanel.java +++ b/src/main/java/io/github/cottonmc/cotton/gui/widget/WListPanel.java @@ -111,8 +111,7 @@ public class WListPanel extends WClippedPanel { if (cellHeight<4) cellHeight=4; int layoutHeight = this.getHeight()-(margin*2); - int cellsHigh = layoutHeight / cellHeight; - + int cellsHigh = Math.max(layoutHeight / cellHeight, 1); // At least one cell is always visible //System.out.println("Adding children..."); -- cgit