dolphin rebuild
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
From 95551f44922670be5c4d670833c2d4e398657495 Mon Sep 17 00:00:00 2001
|
||||
From: Nicolas Fella <nicolas.fella@gmx.de>
|
||||
Date: Fri, 8 Mar 2024 18:46:32 +0100
|
||||
Subject: [PATCH] Remove unneeded code for toggeling dockwidget visibility
|
||||
|
||||
QDockWidget::toggleViewAction::toggled is emitted when minimizing
|
||||
the application window on X11 (https://bugreports.qt.io/browse/QTBUG-48161
|
||||
potentially related). This will cause the dockwidget to be hidden when
|
||||
minimizing the window.
|
||||
|
||||
We don't actually seem to need that connection, triggering the action
|
||||
(via shortcut or menu) seems to correctly show/hide the dockwidget
|
||||
without it
|
||||
|
||||
BUG: 481952
|
||||
---
|
||||
src/dolphinmainwindow.cpp | 2 --
|
||||
1 file changed, 2 deletions(-)
|
||||
|
||||
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
|
||||
index 03486a9cf6..1f4de8869c 100644
|
||||
--- a/src/dolphinmainwindow.cpp
|
||||
+++ b/src/dolphinmainwindow.cpp
|
||||
@@ -2619,8 +2619,6 @@ void DolphinMainWindow::createPanelAction(const QIcon &icon, const QKeySequence
|
||||
|
||||
QAction *panelAction = actionCollection()->addAction(actionName, dockAction);
|
||||
actionCollection()->setDefaultShortcut(panelAction, shortcut);
|
||||
-
|
||||
- connect(panelAction, &QAction::toggled, dockWidget, &QWidget::setVisible);
|
||||
}
|
||||
// clang-format off
|
||||
void DolphinMainWindow::setupWhatsThis()
|
||||
--
|
||||
GitLab
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
<Dependency>packagekit-qt6-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">2cd3d58e.patch</Patch> -->
|
||||
<Patch level="1">95551f44.patch</Patch>
|
||||
<!-- <Patch level="1">find-kactivities.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
@@ -123,6 +123,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2024-03-10</Date>
|
||||
<Version>24.02.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2024-03-03</Date>
|
||||
<Version>24.02.0</Version>
|
||||
|
||||
Reference in New Issue
Block a user