diff --git a/source/funkin/ui/debug/charting/ChartEditorState.hx b/source/funkin/ui/debug/charting/ChartEditorState.hx index a33fd77c6..15c433d18 100644 --- a/source/funkin/ui/debug/charting/ChartEditorState.hx +++ b/source/funkin/ui/debug/charting/ChartEditorState.hx @@ -2942,6 +2942,18 @@ class ChartEditorState extends HaxeUIState */ function handleFileKeybinds():Void { + // CTRL + N = New Chart + if (FlxG.keys.pressed.CONTROL && FlxG.keys.justPressed.N) + { + ChartEditorDialogHandler.openWelcomeDialog(this, true); + } + + // CTRL + O = Open Chart + if (FlxG.keys.pressed.CONTROL && FlxG.keys.justPressed.N) + { + ChartEditorDialogHandler.openBrowseWizard(this, true); + } + // CTRL + Q = Quit to Menu if (FlxG.keys.pressed.CONTROL && FlxG.keys.justPressed.Q) {