diff --git a/src/ViewManager.cpp b/src/ViewManager.cpp index 1352f1c546e5a37a116b7aa9fc7a57b33d485dae..6efb1a1d8173cb8c8d3d6cb9e4cf2af3b50955ec 100644 --- a/src/ViewManager.cpp +++ b/src/ViewManager.cpp @@ -248,6 +248,7 @@ void ViewManager::setupActions() action = new QAction(i18nc("@action Shortcut entry", "Switch to Tab %1", i + 1), this); connect(action, &QAction::triggered, this, [this, i]() { switchToView(i); }); collection->addAction(QStringLiteral("switch-to-tab-%1").arg(i), action); + _multiTabOnlyActions << action; // only add default shortcut bindings for the first 9 tabs, regardless of SWITCH_TO_TAB_COUNT if (i < 9) {