summaryrefslogtreecommitdiff
path: root/src/ui/textbox.moon
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/textbox.moon')
-rw-r--r--src/ui/textbox.moon2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ui/textbox.moon b/src/ui/textbox.moon
index 3c6151d..c1bd521 100644
--- a/src/ui/textbox.moon
+++ b/src/ui/textbox.moon
@@ -65,7 +65,6 @@ class Textbox extends Button
update_cursor_pos: () =>
@.cursor("translate").x = @cursor_pos * 9
fire: (e) =>
- print("cursor pos is", @cursor_pos)
if e.event == "mouse_down"
@down!
if @on
@@ -74,7 +73,6 @@ class Textbox extends Button
if add_key
t = @text.text
for key in *e.data
- print("analyzing key:",key)
if key == "delete" or key == "backspace"
@cursor_pos -=1
if @cursor_pos < 0