Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
authorGary Martin <gary@garycmartin.com>2009-08-19 11:12:40 (GMT)
committer Gary Martin <gary@garycmartin.com>2009-08-19 11:12:40 (GMT)
commitd31ab17e04bb2d0c7a0b03e654fff590d7a06c3f (patch)
treeb16b7a8a9f8e6c7185f2f44638222bbbe69fac9e /activity.py
parenta60af3d4e50ab63313bbecfb25f52f66e0ba31c9 (diff)
Added <ctr> modifier to keyboard shortcuts to allow correct Sugar title input.
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/activity.py b/activity.py
index 2449a72..0a8eead 100644
--- a/activity.py
+++ b/activity.py
@@ -28,7 +28,7 @@ class PhysicsActivity(olpcgames.PyGameActivity):
self.stop_play_state = True
self.stop_play = ToolButton('media-playback-stop')
self.stop_play.set_tooltip(_("Stop"))
- self.stop_play.set_accelerator(_('space'))
+ self.stop_play.set_accelerator(_('<ctrl>space'))
self.stop_play.connect('clicked', self.stop_play_cb)
create_toolbar.insert(self.stop_play, 0)
self.stop_play.show()