From 684bcc0ea98af909cbe739f6675539ec4d17b864 Mon Sep 17 00:00:00 2001 From: Tsu Jan Date: Wed, 21 Jul 2021 11:13:08 +0430 Subject: [PATCH] Blacklisted `QQuickWidget` with window dragging --- Kvantum/ChangeLog | 1 + Kvantum/NEWS | 2 +- Kvantum/style/drag/windowmanager.cpp | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Kvantum/ChangeLog b/Kvantum/ChangeLog index f9e66972..f9ca7508 100644 --- a/Kvantum/ChangeLog +++ b/Kvantum/ChangeLog @@ -1,6 +1,7 @@ V0.20.1 --------- * In the case of bad hard-coded styles, ignore non-base background colors of line-edits if their saturations are small enough. + * Blacklisted QQuickWidget with window dragging. V0.20.0 --------- diff --git a/Kvantum/NEWS b/Kvantum/NEWS index 96c754ff..b070cf26 100644 --- a/Kvantum/NEWS +++ b/Kvantum/NEWS @@ -1,5 +1,5 @@ Latest version: - 17 Jul 2021, V0.20.1 + 21 Jul 2021, V0.20.1 See "ChangeLog" for changes. diff --git a/Kvantum/style/drag/windowmanager.cpp b/Kvantum/style/drag/windowmanager.cpp index 5dfb1b47..b915769e 100644 --- a/Kvantum/style/drag/windowmanager.cpp +++ b/Kvantum/style/drag/windowmanager.cpp @@ -147,6 +147,7 @@ void WindowManager::initializeBlackList (const QStringList &list) blackList_.insert (ExceptionId (QStringLiteral ("CustomTrackView@kdenlive"))); blackList_.insert (ExceptionId (QStringLiteral ("MuseScore"))); blackList_.insert (ExceptionId (QStringLiteral ("KGameCanvasWidget"))); + blackList_.insert (ExceptionId (QStringLiteral ("QQuickWidget"))); for (const QString& exception : list) { ExceptionId id (exception);