summaryrefslogtreecommitdiff
path: root/kde-apps/kmix/files/kmix-16.04.3-crashfix.patch
diff options
context:
space:
mode:
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
- }
-
-