Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No help yet fix #4128

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion source/funkin/ui/debug/stageeditor/StageEditorState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ class StageEditorState extends UIState
if (FlxG.keys.justPressed.DELETE) onMenuItemClick("delete object");
if (FlxG.keys.justPressed.ENTER) onMenuItemClick("test stage");
if (FlxG.keys.justPressed.ESCAPE) onMenuItemClick("exit");
if (FlxG.keys.justPressed.F1) onMenuItemClick("user guide");
if (FlxG.keys.justPressed.F1 && welcomeDialog == null && userGuideDialog == null) onMenuItemClick("user guide");

if (FlxG.keys.justPressed.T)
{
Expand Down Expand Up @@ -1269,6 +1269,10 @@ class StageEditorState extends UIState
userGuideDialog = new UserGuideDialog();
userGuideDialog.showDialog();

userGuideDialog.onDialogClosed = function(_) {
userGuideDialog = null;
}

case "open folder":
#if sys
var absoluteBackupsPath:String = haxe.io.Path.join([Sys.getCwd(), BACKUPS_PATH]);
Expand Down
Loading