From 4c466997430ddf306c29f4d4c1dc4ca11c2ceca5 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Mon, 18 Apr 2022 07:11:28 +0300 Subject: [PATCH 48/48] Qt: Change default shortcut for "Unit Stack Size" to ctrl + '+' Former default, shift + 'S', was reserved. There's still another bug causing the shortcut not from working, or even showing up in the dialog (osdn #44406) See osdn #44407 Signed-off-by: Marko Lindqvist --- client/gui-qt/shortcuts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/gui-qt/shortcuts.cpp b/client/gui-qt/shortcuts.cpp index 1e0265fb4c..226dcf8061 100644 --- a/client/gui-qt/shortcuts.cpp +++ b/client/gui-qt/shortcuts.cpp @@ -171,7 +171,7 @@ fc_shortcut default_shortcuts[] = { _("Go And Build City") }, {SC_GOJOINCITY, Qt::Key_J, Qt::AllButtons, Qt::ShiftModifier, _("Go And Join City") }, - {SC_STACK_SIZE, Qt::Key_S, Qt::AllButtons, Qt::ShiftModifier, + {SC_STACK_SIZE, Qt::Key_Plus, Qt::AllButtons, Qt::ControlModifier, _("Unit Stack Size") } }; -- 2.35.1