Bug 101519 - mouse wheel scrolls in wrong direction in presentation mode
Summary: mouse wheel scrolls in wrong direction in presentation mode
Status: RESOLVED FIXED
Alias: None
Product: kpdf
Classification: Unmaintained
Component: general (show other bugs)
Version: 0.4
Platform: Debian testing Linux
: NOR normal
Target Milestone: ---
Assignee: Albert Astals Cid
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-03-14 22:21 UTC by Nicolas Dietrich
Modified: 2005-03-14 23:18 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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();
     }
 }