chore: upd

This commit is contained in:
2026-01-24 00:23:54 +02:00
parent 31ea8d7616
commit 1a37e76c4a
6 changed files with 39 additions and 9 deletions

View File

@@ -22,7 +22,7 @@ ShellRoot {
triggerDescription: "Toggle the menu"
name: "shell_toggle"
onReleased: {
ShellStateManager.toggleShell()
ShellStateManager.toggleShell();
}
}
@@ -30,10 +30,10 @@ ShellRoot {
target: "deltarune.shell"
enabled: true
function open(): void {
ShellStateManager.openShell()
ShellStateManager.openShell();
}
function close(): void {
ShellStateManager.closeShell()
ShellStateManager.closeShell();
}
}
}