# HG changeset patch # User Pantxo Diribarne # Date 1477000725 -7200 # Node ID 65d84345abfca963405f1faa5cf155bc6ec09066 # Parent 2d9393be9a18ef1eabb18bbd18ae8c39a56e0b97 Fix incorrect graphics event Key when space key is pressed (bug #49397) *KeyMap.cc (KeyMap::qKeyToKeyString): remove Qt::Key_Any mapper which shadows Qt::Key_Space. diff -r 2d9393be9a18 -r 65d84345abfc libgui/graphics/KeyMap.cc --- a/libgui/graphics/KeyMap.cc Wed Oct 19 15:20:33 2016 -0700 +++ b/libgui/graphics/KeyMap.cc Thu Oct 20 23:58:45 2016 +0200 @@ -113,7 +113,6 @@ keyMapper[Qt::Key_Direction_L] = "direction_l"; keyMapper[Qt::Key_Direction_R] = "direction_r"; keyMapper[Qt::Key_Space] = "space"; - keyMapper[Qt::Key_Any] = "any"; keyMapper[Qt::Key_Exclam] = "exclam"; keyMapper[Qt::Key_QuoteDbl] = "quotedbl"; keyMapper[Qt::Key_NumberSign] = "numbersign";