From 02145bddce58cc710d6cc91b877815cd81111f09 Mon Sep 17 00:00:00 2001 From: Gabriel Karlsson Date: Wed, 19 Oct 2022 05:33:11 +0000 Subject: [PATCH] Fix wording in action 'Switch to Screen' This erroneous "Window" instead of "Switch" apparently broke stuff. The issue was pointed out on Reddit here: [https://www.reddit.com/r/kde/comments/y78qps/comment/istrj6t/](https://www.reddit.com/r/kde/comments/y78qps/comment/istrj6t/) --- src/useractions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/useractions.cpp b/src/useractions.cpp index 875ff9e4cb..65687d5ddb 100644 --- a/src/useractions.cpp +++ b/src/useractions.cpp @@ -1104,7 +1104,7 @@ void Workspace::initShortcuts() Qt::META | Qt::Key_D, &Workspace::slotToggleShowDesktop); for (int i = 0; i < 8; ++i) { - initShortcut(QStringLiteral("Window to Screen %1").arg(i), i18n("Switch to Screen %1", i), 0, [this, i]() { + initShortcut(QStringLiteral("Switch to Screen %1").arg(i), i18n("Switch to Screen %1", i), 0, [this, i]() { Output *output = outputs().value(i); if (output) { slotSwitchToScreen(output);