Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
cadin committed Oct 16, 2023
2 parents 7d6249f + 82183ce commit 5aae0c5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Panels.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Panels version 1.6.0
-- Panels version 1.6.1
-- https://cadin.github.io/panels/

import "CoreLibs/object"
Expand Down Expand Up @@ -524,7 +524,11 @@ local function loadSequence(num)
end

if sequence.showAdvanceControls == nil then
sequence.showAdvanceControls = sequence.showAdvanceControl or true
if sequence.showAdvanceControl == nil then
sequence.showAdvanceControls = true
else
sequence.showAdvanceControls = sequence.showAdvanceControl
end
end

if sequence.backControl == nil then
Expand Down

0 comments on commit 5aae0c5

Please sign in to comment.