Skip to content

Commit

Permalink
Gesture system: Unbreak local_options
Browse files Browse the repository at this point in the history
(oops)
  • Loading branch information
esainane committed Jul 16, 2020
1 parent 76a695b commit 71e822a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LuaUI/Widgets/gui_gesture_build.lua
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ for k,v in pairs(local_options) do
options[k] = v
end
for i = 1,#local_options_order do
options_order[#options_order] = local_options_order[i]
options_order[#options_order+1] = local_options_order[i]
end

-- Set some saner defaults
Expand Down
2 changes: 1 addition & 1 deletion LuaUI/Widgets/gui_gesture_comms.lua
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ for k,v in pairs(local_options) do
options[k] = v
end
for i = 1,#local_options_order do
options_order[#options_order] = local_options_order[i]
options_order[#options_order+1] = local_options_order[i]
end

-- Set some saner defaults
Expand Down

0 comments on commit 71e822a

Please sign in to comment.