Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2008-08-22 12:56:45 (GMT)
committer Simon Schampijer <simon@schampijer.de>2008-08-22 12:56:45 (GMT)
commit8e455e6a760cdacf9c6c3f64b6686b8bf063d094 (patch)
tree36fb0790f3f5f6255f6ea2b1d465991bf890272c /src
parent3e11d209c1834d4ec52b8e30744142e7d7bf8a28 (diff)
Rotate screen counter clockwise #6605
Diffstat (limited to 'src')
-rw-r--r--src/view/keyhandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/keyhandler.py b/src/view/keyhandler.py
index ffed97c..993d09d 100644
--- a/src/view/keyhandler.py
+++ b/src/view/keyhandler.py
@@ -209,7 +209,7 @@ class KeyHandler(object):
keycodes = (80, 85, 88, 83, 80, 85, 88, 83)
keysyms = ("KP_Up", "KP_Right", "KP_Down", "KP_Left")
- self._screen_rotation += 1
+ self._screen_rotation -= 1
self._screen_rotation %= 4
actual_keycodes = keycodes[self._screen_rotation:self._screen_rotation