about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2024-06-21 08:14:59 -0700
committerKartik K. Agaram <vc@akkartik.com>2024-06-21 08:17:19 -0700
commitdbd58e81755607de511845564ac3353eeb369ac2 (patch)
treeb211fddca254f5805400f926e8a83673cad8a049
parentf4827991c5913b4a396fd1d67e081f653dfa8cff (diff)
downloadtext.love-dbd58e81755607de511845564ac3353eeb369ac2.tar.gz
merge bugfix X-(
Looks to have first been introduced in Sep 2023. (Merge commit
09c76c82c2, though git's merge commits are hard to read. Yes, looks like
commit 0a12e4c733 didn't get merged right.)
-rw-r--r--edit.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/edit.lua b/edit.lua
index aa62ad3..eaa415e 100644
--- a/edit.lua
+++ b/edit.lua
@@ -243,7 +243,6 @@ function edit.mouse_wheel_move(State, dx,dy)
     end
   elseif dy < 0 then
     State.cursor1 = Text.screen_bottom1(State)
-    edit.put_cursor_on_next_text_line(State)
     for i=1,math.floor(-dy) do
       Text.down(State)
     end