about summary refs log tree commit diff stats
path: root/edit.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-06-04 12:33:23 -0700
committerKartik K. Agaram <vc@akkartik.com>2023-06-04 12:33:23 -0700
commit637e28f300def4172459dd1d6fdf6efd53200ea8 (patch)
treeb53422ef58db46b96564b83b468e1689a1a51fba /edit.lua
parent9656e137742eb442e9ce013dd3f25cf6df8c9fad (diff)
downloadview.love-637e28f300def4172459dd1d6fdf6efd53200ea8.tar.gz
port inscript's bugfix to source editor
Diffstat (limited to 'edit.lua')
-rw-r--r--edit.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/edit.lua b/edit.lua
index f436f36..e1a7fd5 100644
--- a/edit.lua
+++ b/edit.lua
@@ -252,7 +252,7 @@ function edit.mouse_press(State, x,y, mouse_button)
         --  press and hold to start a selection: sets selection on press, cursor on release
         --  press and hold, then press shift: ignore shift
         --    i.e. mouse_release should never look at shift state
-        print_and_log(('edit.mouse_press: in line %d'):format(line_index))
+--?         print_and_log(('edit.mouse_press: in line %d'):format(line_index))
         State.old_cursor1 = State.cursor1
         State.old_selection1 = State.selection1
         State.mousepress_shift = App.shift_down()