summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <andreas.sturmlechner@gmail.com>2015-12-13 12:02:31 +0100
committerMichael Palimaka <kensington@gentoo.org>2015-12-14 04:47:39 +1100
commit91bff47110374a4300587d55c66ef9865afb015e (patch)
treec54e0ed1cd4d2dd76d857dee64752a127cb5bd09 /kde-apps/kate/files
parentkde-apps: Drop KDE Applications 15.08.2 (diff)
downloadgentoo-91bff47110374a4300587d55c66ef9865afb015e.tar.gz
gentoo-91bff47110374a4300587d55c66ef9865afb015e.tar.bz2
gentoo-91bff47110374a4300587d55c66ef9865afb015e.zip
kde-apps/kate: Fix major bug with kde-frameworks 5.17
Caused by a change in kxmlgui. Lingering kate processes in the background, inability to open new files in kate, countless empty kate windows at login Package-Manager: portage-2.2.24
Diffstat (limited to 'kde-apps/kate/files')
-rw-r--r--kde-apps/kate/files/kate-15.08.3-fix-lingering-processes.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/kde-apps/kate/files/kate-15.08.3-fix-lingering-processes.patch b/kde-apps/kate/files/kate-15.08.3-fix-lingering-processes.patch
new file mode 100644
index 000000000000..e7d982e8559e
--- /dev/null
+++ b/kde-apps/kate/files/kate-15.08.3-fix-lingering-processes.patch
@@ -0,0 +1,26 @@
+From: Andreas Hartmetz <ahartmetz@gmail.com>
+Date: Sat, 05 Dec 2015 15:31:24 +0000
+Subject: setQuitOnLastWindowClosed(false) causes lingering processes. Remove.
+X-Git-Url: http://quickgit.kde.org/?p=kate.git&a=commitdiff&h=cd0163d7b956ace0e786a76d8211d06790a2c174
+---
+setQuitOnLastWindowClosed(false) causes lingering processes. Remove.
+
+Previously, it was set to true again later from
+KMainWindowPrivate::init(). I have changed that in KMainWindowPrivate
+so that applications have a better chance to set the property as they
+like - commit 155f524dd79add7d in kxmlgui.
+For Kate, true seems to be the correct setting.
+---
+
+
+--- a/kate/src/main.cpp
++++ b/kate/src/main.cpp
+@@ -133,7 +133,6 @@
+ app.setApplicationDisplayName(aboutData.displayName());
+ app.setOrganizationDomain(aboutData.organizationDomain());
+ app.setApplicationVersion(aboutData.version());
+- app.setQuitOnLastWindowClosed(false);
+
+ /**
+ * set the program icon
+