diff options
author | Thorsten Behrens <tbehrens@novell.com> | 2010-09-16 18:36:06 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-09-16 18:36:06 +0200 |
commit | ef0ca59cb36d75803bf5db43671546cdc6d4ca54 (patch) | |
tree | f8402b64b6f588fc0a83ca32dd77f477b91985a3 | |
parent | 0f5f80f081126258df7fbec04885dbe984d2f3a4 (diff) |
slideshow-effect-rewind-sdext.diff: allows to step back one animation effect
i#48179
-rw-r--r-- | sdext/source/presenter/PresenterController.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdext/source/presenter/PresenterController.cxx b/sdext/source/presenter/PresenterController.cxx index cf3ec87..db7d0f9 100644 --- a/sdext/source/presenter/PresenterController.cxx +++ b/sdext/source/presenter/PresenterController.cxx @@ -998,7 +998,6 @@ void SAL_CALL PresenterController::keyReleased (const awt::KeyEvent& rEvent) } break; - case awt::Key::LEFT: case awt::Key::PAGEUP: if (mxSlideShowController.is()) { @@ -1009,6 +1008,7 @@ void SAL_CALL PresenterController::keyReleased (const awt::KeyEvent& rEvent) } break; + case awt::Key::LEFT: case awt::Key::UP: case awt::Key::P: case awt::Key::BACKSPACE: |