diff options
author | David Athay <ko2fan@gmail.com> | 2008-07-22 14:50:19 +0000 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2008-07-22 14:50:19 +0000 |
commit | 93459202b58b6199e588b5c6768ef8889aa2aa9f (patch) | |
tree | 373ad72183eb256c5377bada7cef7a50146eda8d | |
parent | 157fbba039dc8ee0f7ed414791c72277aaf80831 (diff) | |
download | mana-93459202b58b6199e588b5c6768ef8889aa2aa9f.tar.gz mana-93459202b58b6199e588b5c6768ef8889aa2aa9f.tar.bz2 mana-93459202b58b6199e588b5c6768ef8889aa2aa9f.tar.xz mana-93459202b58b6199e588b5c6768ef8889aa2aa9f.zip |
Reverted the Alt-Gr fix as it did not work.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/game.cpp | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2008-07-22 David Athay <ko2fan@gmail.com> + + * src/game.cpp: Revert the Alt-Gr fix as it did not work. + 2008-07-21 David Athay <ko2fan@gmail.com> * src/game.cpp: Initial attempt at fixing Alt-Gr issue for Rotonen, diff --git a/src/game.cpp b/src/game.cpp index 0c855669..8961c859 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -465,7 +465,7 @@ void Game::handleInput() // Keys pressed together with Alt/Meta // Emotions and some internal gui windows #ifndef __APPLE__ - if (event.key.keysym.mod & KMOD_ALT && event.key.keysym.mod ^ KMOD_CTRL) + if (event.key.keysym.mod & KMOD_LALT) #else if (event.key.keysym.mod & KMOD_LMETA) #endif |