From f5bb235ae099d4044ad3df913f540457c0e8f8a8 Mon Sep 17 00:00:00 2001 From: Keavon Chambers Date: Sat, 17 Jul 2021 03:36:35 -0700 Subject: [PATCH] Remove outdated todo comment --- core/editor/src/input/input_mapper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/editor/src/input/input_mapper.rs b/core/editor/src/input/input_mapper.rs index ecf94448f..e3a6398ab 100644 --- a/core/editor/src/input/input_mapper.rs +++ b/core/editor/src/input/input_mapper.rs @@ -207,7 +207,7 @@ impl Default for Mapping { entry! {action=DocumentMessage::NewDocument, key_down=KeyN, modifiers=[KeyControl]}, entry! {action=DocumentMessage::NextDocument, key_down=KeyTab, modifiers=[KeyControl]}, entry! {action=DocumentMessage::PrevDocument, key_down=KeyTab, modifiers=[KeyControl, KeyShift]}, - entry! {action=DocumentMessage::CloseAllDocumentsWithConfirmation, key_down=KeyW, modifiers=[KeyControl, KeyAlt]}, // TODO: Fix this, it's matching the one below + entry! {action=DocumentMessage::CloseAllDocumentsWithConfirmation, key_down=KeyW, modifiers=[KeyControl, KeyAlt]}, entry! {action=DocumentMessage::CloseActiveDocumentWithConfirmation, key_down=KeyW, modifiers=[KeyControl]}, entry! {action=DocumentMessage::DuplicateSelectedLayers, key_down=KeyD, modifiers=[KeyControl]}, entry! {action=DocumentMessage::CopySelectedLayers, key_down=KeyC, modifiers=[KeyControl]},