Replaced key value with key text.

Added additional comment about the specific delete key used.
This commit is contained in:
armored-dragon 2024-09-30 08:02:44 -05:00
parent cf3afa8855
commit 1ede7ed3e9
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -2133,19 +2133,19 @@
// Hacks to get the menu bar buttons to work
// Copy
if (event.key === 67 && event.isControl && !event.isShifted) {
if (event.text.toLowerCase() === "c" && event.isControl && !event.isShifted) {
selectionManager.copySelectedEntities();
}
// Paste
if (event.key === 86 && event.isControl && !event.isShifted) {
if (event.text.toLowerCase() === "v" && event.isControl && !event.isShifted) {
selectionManager.pasteEntities();
}
// Cut
if (event.key === 88 && event.isControl && !event.isShifted) {
if (event.text.toLowerCase() === "x" && event.isControl && !event.isShifted) {
selectionManager.cutSelectedEntities();
}
// Delete
if (event.key === 16777223 && !event.isControl && !event.isShifted) {
// Delete - This uses the physical 'delete' key on a keyboard.
if (event.text.toLowerCase() === "delete" && !event.isControl && !event.isShifted) {
createApp.deleteSelectedEntities();
}
};