Skip to content

Commit

Permalink
Hide ready and force start buttons when chart preview is on
Browse files Browse the repository at this point in the history
  • Loading branch information
poco0317 committed Dec 1, 2018
1 parent 563c0a5 commit 906e014
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -741,6 +741,14 @@ t[#t + 1] =
toggleNoteField()
end
oldstyle = GAMESTATE:GetCurrentStyle()
end,
ChartPreviewOnMessageCommand = function(self)
ready:Disable()
forceStart:Disable()
end,
ChartPreviewOffMessageCommand = function(self)
ready:Enable()
forceStart:Enable()
end
}

Expand Down

0 comments on commit 906e014

Please sign in to comment.