#238 bugfix for push button and sidebar in bounds checks

This commit is contained in:
Mikayla Fischler
2023-05-23 19:51:48 -04:00
parent 97cee58e5a
commit 43a0ff86d7
7 changed files with 18 additions and 9 deletions

View File

@@ -93,7 +93,7 @@ local function sidebar(args)
elseif event.type == CLICK_TYPE.DOWN then
draw(true, cur_idx)
elseif event.type == CLICK_TYPE.UP then
if cur_idx == ini_idx and e.in_bounds(event.current.x, event.current.y) then
if cur_idx == ini_idx and e.in_frame_bounds(event.current.x, event.current.y) then
e.value = cur_idx
draw(false)
args.callback(e.value)