]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Fixed wrong comments. Discussed with David Faure: installing an event filter works...
authorPeter Penz <peter.penz19@gmail.com>
Thu, 21 Feb 2008 18:45:22 +0000 (18:45 +0000)
committerPeter Penz <peter.penz19@gmail.com>
Thu, 21 Feb 2008 18:45:22 +0000 (18:45 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=777838

src/dolphincolumnwidget.cpp
src/dolphindetailsview.cpp
src/dolphiniconsview.cpp

index b1050afdab19917390333330962da298c0706951..bcb98e0adb1805687b93d6220f029836f69855d0 100644 (file)
@@ -373,7 +373,6 @@ void DolphinColumnWidget::contextMenuEvent(QContextMenuEvent* event)
 void DolphinColumnWidget::wheelEvent(QWheelEvent* event)
 {
     // let Ctrl+wheel events propagate to the DolphinView for icon zooming
-    // (installing an event filter does not work, as the wheel event is handled first)
     if (event->modifiers() & Qt::ControlModifier) {
         event->ignore();
         return;
index a725c06f3180162124deb8b4ba3bcf80bd2a7cc4..6783435036f8cac2f82878ba79fabce0caf63dfa 100644 (file)
@@ -386,7 +386,6 @@ void DolphinDetailsView::resizeEvent(QResizeEvent* event)
 void DolphinDetailsView::wheelEvent(QWheelEvent* event)
 {
     // let Ctrl+wheel events propagate to the DolphinView for icon zooming
-    // (installing an event filter does not work, as the wheel event is handled first)
     if (event->modifiers() & Qt::ControlModifier) {
         event->ignore();
         return;
index 9f31141825e31f2e5044c22f9f14d153bf5f9f9e..af7f026e1c627b547c30f3e0a8d9601c67a1c163 100644 (file)
@@ -297,7 +297,6 @@ void DolphinIconsView::keyPressEvent(QKeyEvent* event)
 void DolphinIconsView::wheelEvent(QWheelEvent* event)
 {
     // let Ctrl+wheel events propagate to the DolphinView for icon zooming
-    // (installing an event filter does not work, as the wheel event is handled first)
     if (event->modifiers() & Qt::ControlModifier) {
         event->ignore();
         return;