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!
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(); } }