[arch-commits] Commit in lxqt-panel/trunk (FS70386.patch)

Chih-Hsuan Yen yan12125 at gemini.archlinux.org
Tue Feb 8 11:12:21 UTC 2022


    Date: Tuesday, February 8, 2022 @ 11:12:21
  Author: yan12125
Revision: 1129187

lxqt-panel: remove unneeded patch

No longer needed since 0.17.1

https://github.com/archlinux/svntogit-community/commit/faedbc6df20766e3660db914df940116264103a8

Deleted:
  lxqt-panel/trunk/FS70386.patch

---------------+
 FS70386.patch |   28 ----------------------------
 1 file changed, 28 deletions(-)

Deleted: FS70386.patch
===================================================================
--- FS70386.patch	2022-02-08 11:10:35 UTC (rev 1129186)
+++ FS70386.patch	2022-02-08 11:12:21 UTC (rev 1129187)
@@ -1,28 +0,0 @@
-From 4c674608aaaac73d9333f869941a56b28fc47d22 Mon Sep 17 00:00:00 2001
-From: tsujan <tsujan2000 at gmail.com>
-Date: Sat, 10 Apr 2021 17:39:47 +0430
-Subject: [PATCH] Check pressed mouse buttons before closing grouped task popup
- (#1601)
-
-The lack of checking didn't have an effect with the official Qt releases but it causes a bug with the latest official patches. Logically, the pressed mouse buttons should have always been checked.
-
-Closes https://github.com/lxqt/lxqt-panel/issues/1600
----
- CHANGELOG                        | 1 +
- plugin-taskbar/lxqttaskgroup.cpp | 3 ++-
- 2 files changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/plugin-taskbar/lxqttaskgroup.cpp b/plugin-taskbar/lxqttaskgroup.cpp
-index 7f2367ce1..f1db0f179 100644
---- a/plugin-taskbar/lxqttaskgroup.cpp
-+++ b/plugin-taskbar/lxqttaskgroup.cpp
-@@ -576,7 +576,8 @@ void LXQtTaskGroup::dragLeaveEvent(QDragLeaveEvent *event)
- void LXQtTaskGroup::mouseMoveEvent(QMouseEvent* event)
- {
-     // if dragging the taskgroup, do not show the popup
--    setPopupVisible(false, true);
-+    if (event->buttons() & Qt::LeftButton)
-+        setPopupVisible(false, true);
-     LXQtTaskButton::mouseMoveEvent(event);
- }
- 



More information about the arch-commits mailing list