Skip to content

Commit

Permalink
Use backspace as default to delete on mac
Browse files Browse the repository at this point in the history
Only full size mac keyboards has a specific delete key, most doesn't.
  • Loading branch information
hyarion authored and chennes committed Sep 21, 2024
1 parent 8fdef15 commit 86fa65b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Gui/CommandDoc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1318,7 +1318,11 @@ StdCmdDelete::StdCmdDelete()
sWhatsThis = "Std_Delete";
sStatusTip = QT_TR_NOOP("Deletes the selected objects");
sPixmap = "edit-delete";
#ifdef FC_OS_MACOSX
sAccel = "Backspace";
#else
sAccel = keySequenceToAccel(QKeySequence::Delete);
#endif
eType = ForEdit;
}

Expand Down

0 comments on commit 86fa65b

Please sign in to comment.