| Summary: | page up, page down don't work in presentation mode | ||
|---|---|---|---|
| Product: | [Unmaintained] kpdf | Reporter: | Claus Wilke <wilke> |
| Component: | general | Assignee: | Albert Astals Cid <aacid> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Claus Wilke
2005-03-26 23:29:45 UTC
CVS commit by aacid:
Obey page up and page down keys in presentation mode
For the 'b' key thing open another wish report; remember 1 issue per bug report.
BUGS: 102565
M +2 -2 presentationwidget.cpp 1.25
--- kdegraphics/kpdf/ui/presentationwidget.cpp #1.24:1.25
@@ -173,7 +173,7 @@ void PresentationWidget::keyPressEvent(
if (m_width == -1) return;
- if ( e->key() == Key_Left || e->key() == Key_Backspace )
+ if ( e->key() == Key_Left || e->key() == Key_Backspace || e->key() == Key_Prior )
slotPrevPage();
- else if ( e->key() == Key_Right || e->key() == Key_Space )
+ else if ( e->key() == Key_Right || e->key() == Key_Space || e->key() == Key_Next )
slotNextPage();
else if ( e->key() == Key_Escape )
|