Merge text.love

This commit is contained in:
Kartik K. Agaram 2023-12-01 22:04:47 -08:00
commit 42803a209d
2 changed files with 3 additions and 1 deletions

View File

@ -130,6 +130,7 @@ end
function edit.mouse_press(State, x,y, mouse_button)
if State.search_term then return end
State.mouse_down = mouse_button
--? print_and_log(('edit.mouse_press: cursor at %d,%d'):format(State.cursor1.line, State.cursor1.pos))
if y < State.top then
State.old_cursor1 = State.cursor1
@ -178,6 +179,7 @@ end
function edit.mouse_release(State, x,y, mouse_button)
if State.search_term then return end
--? print_and_log(('edit.mouse_release(%d,%d): cursor at %d,%d'):format(x,y, State.cursor1.line, State.cursor1.pos))
State.mouse_down = nil
if y < State.top then
State.cursor1 = {line=State.screen_top1.line, pos=State.screen_top1.pos}
edit.clean_up_mouse_press(State)

View File

@ -11,7 +11,7 @@ function Text.clip_selection(State, line_index, apos, bpos)
-- min,max = sorted(State.selection1,State.cursor1)
local minl,minp = State.selection1.line,State.selection1.pos
local maxl,maxp
if App.mouse_down(1) then
if State.mouse_down then
maxl,maxp = Text.mouse_pos(State)
else
maxl,maxp = State.cursor1.line,State.cursor1.pos