kde-frameworks/kxmlgui/files/kxmlgui-5.77.0-fix-key-recording.patch
author gabriel
Wed, 13 Jan 2021 08:55:17 +0000
changeset 4 8c829ec67afe
parent 3 fc1bbb6157eb
permissions -rw-r--r--
Forgot manifest...

From 1bd9ac05b0eed3582937829150b31ea48fd95bb0 Mon Sep 17 00:00:00 2001
From: Weng Xuetian <wengxt@gmail.com>
Date: Thu, 17 Dec 2020 11:12:40 -0800
Subject: [PATCH] Fix key recording by setWindow before capture starts.

It is common that during the construction of widget, it is not yet added to
a window. Thus windowHandle will simply return null in this case. Always set
the window to before the capture starts.

BUG: 430388
---
 src/kkeysequencewidget.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/kkeysequencewidget.cpp b/src/kkeysequencewidget.cpp
index a51c6cc..c1f5c42 100644
--- a/src/kkeysequencewidget.cpp
+++ b/src/kkeysequencewidget.cpp
@@ -493,6 +493,7 @@ void KKeySequenceWidget::setCheckActionCollections(const QList<KActionCollection
 //slot
 void KKeySequenceWidget::captureKeySequence()
 {
+    d->recorder->setWindow(window()->windowHandle());
     d->recorder->startRecording();
 }
 
-- 
GitLab