Node renaming

This commit is contained in:
Magnus Åhall 2026-06-10 17:21:29 +02:00
parent c583138270
commit 9ebda04428
2 changed files with 31 additions and 13 deletions

View file

@ -74,6 +74,11 @@ export class App {
keyHandler(event) {//{{{
let handled = true
if (event.key == 'F2') {
this.nodeUI.renameNode()
return
}
// All keybindings is Alt+Shift, since the popular browsers at the time (2023) allows to override thees.
// Ctrl+S is the exception to using Alt+Shift, since it is overridable and in such widespread use for saving.
// Thus, the exception is acceptable to consequent use of alt+shift.