Adding quit to menus

This commit is contained in:
2025-07-14 23:42:51 -05:00
parent 080cc22841
commit ae60905eb4
3 changed files with 9 additions and 0 deletions

View File

@@ -233,6 +233,9 @@ export class EditorsComponent {
editor.showSettingsMenu();
case "show-about":
break;
case "quit":
window.main.quit();
break;
default:
editor.execCommand(action);
}