From 6a2228fc219b11ec5db67b63fc860b81618d6ae9 Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 27 Aug 2019 13:39:47 +0200 Subject: [PATCH] Don't localize debugging texts. --- src/slic3r/GUI/KBShortcutsDialog.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/KBShortcutsDialog.cpp b/src/slic3r/GUI/KBShortcutsDialog.cpp index d3486901dd..e3ef335e68 100644 --- a/src/slic3r/GUI/KBShortcutsDialog.cpp +++ b/src/slic3r/GUI/KBShortcutsDialog.cpp @@ -159,7 +159,8 @@ void KBShortcutsDialog::fill_shortcuts() plater_shortcuts.push_back(Shortcut("O", L("Zoom out"))); plater_shortcuts.push_back(Shortcut("ESC", L("Unselect gizmo / Clear selection"))); #if ENABLE_RENDER_PICKING_PASS - plater_shortcuts.push_back(Shortcut("T", L("Toggle picking pass texture rendering on/off"))); + // Don't localize debugging texts. + plater_shortcuts.push_back(Shortcut("T", "Toggle picking pass texture rendering on/off")); #endif // ENABLE_RENDER_PICKING_PASS m_full_shortcuts.push_back(std::make_pair(_(L("Plater Shortcuts")), std::make_pair(plater_shortcuts, szRight)));