Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2008-08-22 12:55:47 (GMT)
committer Simon Schampijer <simon@schampijer.de>2008-08-22 12:55:47 (GMT)
commitc363a162be18698b79a3bf02b323f71c0d44f927 (patch)
tree6b743999a0096e60d63c7b01198ec613e3923fba
parent0bb868a8e373a357174eae32bd12f15df0868e3f (diff)
Rotate screen counter-clockwise #6605
-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