parent
63528ad511
commit
4989ea5fb0
@ -1,27 +0,0 @@
|
||||
From 7acda936f06193e9fc85ae5cf9ccc8d65971f657 Mon Sep 17 00:00:00 2001
|
||||
From: Albert Astals Cid <aacid@kde.org>
|
||||
Date: Tue, 12 Jan 2021 23:43:19 +0100
|
||||
Subject: [PATCH 3/5] Fix regression caused due to porting from operator+ to
|
||||
operator|
|
||||
|
||||
BUGS: 431493
|
||||
---
|
||||
src/klineedit.cpp | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/klineedit.cpp b/src/klineedit.cpp
|
||||
index 1cc9316..8201259 100644
|
||||
--- a/src/klineedit.cpp
|
||||
+++ b/src/klineedit.cpp
|
||||
@@ -1222,7 +1222,7 @@ bool KLineEditPrivate::overrideShortcut(const QKeyEvent *e)
|
||||
// but doesn't dare force as "stronger than kaction shortcuts"...
|
||||
else if (e->matches(QKeySequence::SelectAll)) {
|
||||
return true;
|
||||
- } else if (qApp->platformName() == QLatin1String("xcb") && (key == Qt::CTRL | Qt::Key_E || key == Qt::CTRL | Qt::Key_U)) {
|
||||
+ } else if (qApp->platformName() == QLatin1String("xcb") && (key == (Qt::CTRL | Qt::Key_E) || key == (Qt::CTRL | Qt::Key_U))) {
|
||||
return true;
|
||||
}
|
||||
|
||||
--
|
||||
2.29.2
|
||||
|
@ -1 +1 @@
|
||||
SHA512 (kcompletion-5.78.0.tar.xz) = 29fbc9c56a34601a4c674c45d04a3d2b79beebe0484c2dc80bf7a9a71de9c8ee82b548bd8d3df521593a60e37f0789d9e23eec5058fab9c3bfee2e53c8d6f58a
|
||||
SHA512 (kcompletion-5.79.0.tar.xz) = 334b21c919a17a76c26bab890d8a785e054958153793bdbe03fb8fe8bbacd0287947f02a9072ec99b4c2963f7c03eea47b3e79c18011dc40d17404ec038c581d
|
||||
|
Loading…
Reference in new issue