Skip to content
Snippets Groups Projects
Commit bdc12d7f authored by Chad Pilkey's avatar Chad Pilkey
Browse files

Merge pull request #296 from mconf/presentation-arrow-keys

Re-enabling the common shortcut keys to change the slides
parents a62d19dc b6317a7c
No related branches found
No related tags found
No related merge requests found
......@@ -201,6 +201,11 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
keyCombos[modifier+(ResourceUtil.getInstance().getString('bbb.shortcutkey.present.fitWidth') as String)] = ShortcutEvent.FIT_TO_WIDTH;
keyCombos[modifier+(ResourceUtil.getInstance().getString('bbb.shortcutkey.present.fitPage') as String)] = ShortcutEvent.FIT_TO_PAGE;
//keyCombos[modifier+(ResourceUtil.getInstance().getString('bbb.shortcutkey.whiteboard.undo') as String)] = ShortcutEvent.UNDO_WHITEBOARD;
keyCombos[Keyboard.LEFT] = ShortcutEvent.PREVIOUS_SLIDE;
keyCombos[Keyboard.RIGHT] = ShortcutEvent.NEXT_SLIDE;
keyCombos[Keyboard.PAGE_UP] = ShortcutEvent.PREVIOUS_SLIDE;
keyCombos[Keyboard.PAGE_DOWN] = ShortcutEvent.NEXT_SLIDE;
}
// Handle presentation-scope hotkeys
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment