Remove debug output (shame on me)
This commit is contained in:
@@ -510,7 +510,6 @@ public class GuiTextArea extends Gui implements GuiElement, GuiOutsideClickableE
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
|
||||||
if (GuiScreen.isCtrlKeyDown()) {
|
if (GuiScreen.isCtrlKeyDown()) {
|
||||||
switch (keyCode) {
|
switch (keyCode) {
|
||||||
case Keyboard.KEY_A: // Select all
|
case Keyboard.KEY_A: // Select all
|
||||||
@@ -624,14 +623,6 @@ public class GuiTextArea extends Gui implements GuiElement, GuiOutsideClickableE
|
|||||||
selectionX = cursorX;
|
selectionX = cursorX;
|
||||||
selectionY = cursorY;
|
selectionY = cursorY;
|
||||||
}
|
}
|
||||||
} finally {
|
|
||||||
System.out.println(cursorX + "/" + cursorY);
|
|
||||||
System.out.println(selectionX + "/" + selectionY);
|
|
||||||
System.out.println("Lines (" + text.length + "): ");
|
|
||||||
for (String line : text) {
|
|
||||||
System.out.println(line);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user