Merge text.love

This commit is contained in:
Kartik K. Agaram 2023-09-16 00:08:40 -07:00
commit e59995b83c
1 changed files with 0 additions and 2 deletions

View File

@ -212,13 +212,11 @@ end
function edit.mouse_wheel_move(State, dx,dy)
if dy > 0 then
State.cursor1 = {line=State.screen_top1.line, pos=State.screen_top1.pos}
edit.put_cursor_on_next_text_line(State)
for i=1,math.floor(dy) do
Text.up(State)
end
elseif dy < 0 then
State.cursor1 = {line=State.screen_bottom1.line, pos=State.screen_bottom1.pos}
edit.put_cursor_on_next_text_line(State)
for i=1,math.floor(-dy) do
Text.down(State)
end