From 82da1f8fc122ad1ac9cd87d4bdaaa61a9dd11d8f Mon Sep 17 00:00:00 2001 From: YuSanka Date: Wed, 12 May 2021 11:39:39 +0200 Subject: [PATCH] Code cleaning: Delete workaround code --- src/slic3r/GUI/KBShortcutsDialog.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/slic3r/GUI/KBShortcutsDialog.cpp b/src/slic3r/GUI/KBShortcutsDialog.cpp index d766ff5fd5..e729756294 100644 --- a/src/slic3r/GUI/KBShortcutsDialog.cpp +++ b/src/slic3r/GUI/KBShortcutsDialog.cpp @@ -182,15 +182,9 @@ void KBShortcutsDialog::fill_shortcuts() m_full_shortcuts.push_back({ { _L("Gizmos"), _L("The following shortcuts are applicable when the specified gizmo is active") }, gizmos_shortcuts }); Shortcuts object_list_shortcuts = { -#if defined (__linux__) - { alt + "P", L("Set selected items as Ptrintable/Unprintable") }, - { alt + "0", L("Set default extruder for the selected items") }, - { alt + "1-9", L("Set extruder number for the selected items") }, -#else { "P", L("Set selected items as Ptrintable/Unprintable") }, { "0", L("Set default extruder for the selected items") }, { "1-9", L("Set extruder number for the selected items") }, -#endif }; m_full_shortcuts.push_back({ { _L("Objects List"), "" }, object_list_shortcuts });