diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2025-05-06 15:01:21 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2025-05-06 15:01:21 -0700 |
commit | aba01abc23c791ece7607f167f3a98cb782dba53 (patch) | |
tree | d8ee4bf7536446100c2214f406ed8405a777eb3f /log_browser.lua | |
parent | 9c3bf97ea3345aa0ffdbc35b234689a5edca73ea (diff) | |
parent | 11cd9123c15f9b9e76c359a8ac672c21f299811a (diff) | |
download | view.love-aba01abc23c791ece7607f167f3a98cb782dba53.tar.gz |
Merge lines.love
Diffstat (limited to 'log_browser.lua')
-rw-r--r-- | log_browser.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/log_browser.lua b/log_browser.lua index 6e7e6db..fae9d6d 100644 --- a/log_browser.lua +++ b/log_browser.lua @@ -183,7 +183,7 @@ end function log_browser.quit(State) end -function log_browser.mouse_press(State, x,y, mouse_button) +function log_browser.mouse_press(State, x,y, mouse_button, is_touch, presses) local line_index = log_browser.line_index(State, x,y) if line_index == nil then -- below lower margin @@ -249,7 +249,7 @@ function log_browser.line_index(State, mx,my) end end -function log_browser.mouse_release(State, x,y, mouse_button) +function log_browser.mouse_release(State, x,y, mouse_button, is_touch, presses) end function log_browser.mouse_wheel_move(State, dx,dy) @@ -267,7 +267,7 @@ end function log_browser.text_input(State, t) end -function log_browser.keychord_press(State, chord, key) +function log_browser.keychord_press(State, chord, key, scancode, is_repeat) -- move if chord == 'up' then log_browser.up(State) |