Bug 101519

Summary: mouse wheel scrolls in wrong direction in presentation mode
Product: [Applications] kpdf Reporter: Nicolas Dietrich <nidi>
Component: generalAssignee: Albert Astals Cid <aacid>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 0.4   
Target Milestone: ---   
Platform: Debian testing   
OS: Linux   
Latest Commit: Version Fixed In:

Description Nicolas Dietrich 2005-03-14 22:21:41 UTC
Version:           0.4 (using KDE KDE 3.4.0)
Installed from:    Debian testing/unstable Packages
OS:                Linux

When viewing a document in presentation mode, the slides move in the opposite direction than expected using the mouse wheel. (and in the opposite direction than in normal mode).

Apart from that - just great application - congratulations!
Comment 1 Albert Astals Cid 2005-03-14 23:18:52 UTC
CVS commit by aacid: 

Make presentation widget wheel behave the same that when on scrollview, down next page, up previous page
BUG: 101519


  M +2 -2      presentationwidget.cpp   1.24


--- kdegraphics/kpdf/ui/presentationwidget.cpp  #1.23:1.24
@@ -195,5 +195,5 @@ void PresentationWidget::wheelEvent( QWh
             div = 3;
         while ( div-- )
-            slotNextPage();
+            slotPrevPage();
     }
     else if ( div < 0 )
@@ -202,5 +202,5 @@ void PresentationWidget::wheelEvent( QWh
             div = -3;
         while ( div++ )
-            slotPrevPage();
+            slotNextPage();
     }
 }