summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--src/game.cpp2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e2a3abfa..2fddc422 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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