Skip to content

Commit

Permalink
Unbreak local_options
Browse files Browse the repository at this point in the history
(oops)
  • Loading branch information
esainane committed May 11, 2020
1 parent b7b486d commit 672d97c
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 672d97c

Please sign in to comment.