| Summary: | mouse wheel scrolls in wrong direction in presentation mode | ||
|---|---|---|---|
| Product: | [Unmaintained] kpdf | Reporter: | Nicolas Dietrich <nidi> |
| Component: | general | Assignee: | Albert Astals Cid <aacid> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 0.4 | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Nicolas Dietrich
2005-03-14 22:21:41 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();
}
}
|