Skip to content

Commit

Permalink
Merge pull request #4333 from Bumber64/patch-2
Browse files Browse the repository at this point in the history
Fix List widget on_submit2
  • Loading branch information
myk002 authored Mar 6, 2024
2 parents 1465b06 + 83a859c commit 5423345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/lua/gui/widgets.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2098,7 +2098,7 @@ function List:onInput(keys)
end
if keys.SELECT then
return self:submit()
elseif keys.CUSTOM_SHIFT_ENTER then
elseif keys.SELECT_ALL then
return self:submit2()
elseif keys._MOUSE_L then
local idx = self:getIdxUnderMouse()
Expand Down

0 comments on commit 5423345

Please sign in to comment.