Browse Source

X11: Fixed page down key mapping.

Branimir Karadžić 10 years ago
parent
commit
38a7bc6d28
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/common/entry/entry_x11.cpp

+ 1 - 1
examples/common/entry/entry_x11.cpp

@@ -207,7 +207,7 @@ namespace entry
 			initTranslateKey(XK_Home,         Key::Home);
 			initTranslateKey(XK_KP_End,       Key::End);
 			initTranslateKey(XK_Page_Up,      Key::PageUp);
-			initTranslateKey(XK_Page_Down,    Key::PageUp);
+			initTranslateKey(XK_Page_Down,    Key::PageDown);
 			initTranslateKey(XK_Print,        Key::Print);
 			initTranslateKey(XK_equal,        Key::Plus);
 			initTranslateKey(XK_minus,        Key::Minus);