mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-15 03:13:45 +00:00
fix: stopped allowing F1 to create more than one help dialog window in the Charting Editor
This commit is contained in:
parent
711e0a6b75
commit
777978f5a5
|
@ -5654,7 +5654,9 @@ class ChartEditorState extends UIState // UIState derives from MusicBeatState
|
||||||
function handleHelpKeybinds():Void
|
function handleHelpKeybinds():Void
|
||||||
{
|
{
|
||||||
// F1 = Open Help
|
// F1 = Open Help
|
||||||
if (FlxG.keys.justPressed.F1) this.openUserGuideDialog();
|
if (FlxG.keys.justPressed.F1 && !isHaxeUIDialogOpen) {
|
||||||
|
this.openUserGuideDialog();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleQuickWatch():Void
|
function handleQuickWatch():Void
|
||||||
|
|
Loading…
Reference in a new issue