summaryrefslogtreecommitdiff
path: root/kde-apps/kmix/files/kmix-16.04.3-crashfix.patch
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2016-12-19 08:56:28 +0100
committerJohannes Huber <johu@gentoo.org>2016-12-19 09:20:26 +0100
commit99a0c39964666bd2e3903be351220d806fc487ae (patch)
treebd5d171a5bab6a99c3c1f95e0ab3b6ef0bc8ead9 /kde-apps/kmix/files/kmix-16.04.3-crashfix.patch
parent7c612711b0c14f5a34cd54510ecadd30d74075fc (diff)
downloadgentoo-99a0c39964666bd2e3903be351220d806fc487ae.tar.gz
gentoo-99a0c39964666bd2e3903be351220d806fc487ae.tar.xz
kde-apps: Remove KDE Applications 16.04.3
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'kde-apps/kmix/files/kmix-16.04.3-crashfix.patch')
-rw-r--r--kde-apps/kmix/files/kmix-16.04.3-crashfix.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/kde-apps/kmix/files/kmix-16.04.3-crashfix.patch b/kde-apps/kmix/files/kmix-16.04.3-crashfix.patch
deleted file mode 100644
index c2ce07c52d7..00000000000
--- a/kde-apps/kmix/files/kmix-16.04.3-crashfix.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-commit 7aa904ecacfd2eeaa91068e17cc9bd79ba058206
-Author: Andreas Sturmlechner <andreas.sturmlechner@gmail.com>
-Date: Thu Jul 28 12:49:32 2016 +0200
-
- Fix infinite recursion by scroll wheel volume change
-
- BUGS: 364141
- REVIEW: 128546
-
-diff --git a/gui/viewdockareapopup.cpp b/gui/viewdockareapopup.cpp
-index 846d9be..24e462b 100644
---- a/gui/viewdockareapopup.cpp
-+++ b/gui/viewdockareapopup.cpp
-@@ -137,9 +137,11 @@ void ViewDockAreaPopup::wheelEvent ( QWheelEvent * e )
- {
- if ( _mdws.isEmpty() )
- return;
--
-+
-+#ifndef X_KMIX_KF5_BUILD
- // Pass wheel event from "border widget" to child
- QApplication::sendEvent( _mdws.first(), e);
-+#endif
- }
-
-