aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuuz <6596629+Juuxel@users.noreply.github.com>2023-11-18 20:58:52 +0200
committerJuuz <6596629+Juuxel@users.noreply.github.com>2023-11-18 20:58:52 +0200
commit0e290b633ef8027b258503a05f9cb85b1a4f89b8 (patch)
tree5d53b63340227b48cefd96b7edead68051578a19
parent1f56b41076648b9242b716f2e458c3be6ff60f1e (diff)
downloadLibGui-0e290b633ef8027b258503a05f9cb85b1a4f89b8.tar.gz
LibGui-0e290b633ef8027b258503a05f9cb85b1a4f89b8.tar.bz2
LibGui-0e290b633ef8027b258503a05f9cb85b1a4f89b8.zip
WListPanel: Delete commented-out code block
-rw-r--r--src/main/java/io/github/cottonmc/cotton/gui/widget/WListPanel.java12
1 files changed, 0 insertions, 12 deletions
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 9b0bc58..d36fb70 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
@@ -88,18 +88,6 @@ public class WListPanel<D, W extends WWidget> extends WClippedPanel {
}
super.paint(context, x, y, mouseX, mouseY);
- /*
- if (getBackgroundPainter()!=null) {
- getBackgroundPainter().paintBackground(x, y, this);
- } else {
- ScreenDrawing.drawBeveledPanel(x, y, width, height);
- }
-
-
-
- for(WWidget child : children) {
- child.paintBackground(x + child.getX(), y + child.getY(), mouseX - child.getX(), mouseY - child.getY());
- }*/
}
private W createChild() {