mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-12-06 12:18:38 +00:00
Added missing File menu keybinds
This commit is contained in:
parent
874c57bde3
commit
2b092abd8a
|
|
@ -2899,6 +2899,18 @@ class ChartEditorState extends HaxeUIState
|
||||||
*/
|
*/
|
||||||
function handleFileKeybinds():Void
|
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
|
// CTRL + Q = Quit to Menu
|
||||||
if (FlxG.keys.pressed.CONTROL && FlxG.keys.justPressed.Q)
|
if (FlxG.keys.pressed.CONTROL && FlxG.keys.justPressed.Q)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue