Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@sugarlabs.org>2009-09-14 16:19:09 (GMT)
committer Tomeu Vizoso <tomeu@sugarlabs.org>2009-09-14 16:19:09 (GMT)
commitdb77ed8ab3821066afb9632ec94ef52379d4a042 (patch)
treef8b93584998cae74db95539a6b254ac1b7245d9e
parent184ff7ea52467c1f15e3a831a4aac72a5a195b00 (diff)
Put back <Ctrl>Z as the Undo accelerator #1287
-rw-r--r--src/sugar/activity/widgets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sugar/activity/widgets.py b/src/sugar/activity/widgets.py
index 6ecdda3..76ccd24 100644
--- a/src/sugar/activity/widgets.py
+++ b/src/sugar/activity/widgets.py
@@ -89,7 +89,7 @@ class UndoButton(ToolButton):
def __init__(self, **kwargs):
ToolButton.__init__(self, 'edit-undo', **kwargs)
self.props.tooltip = _('Undo')
- self.props.accelerator = '<Ctrl>Q'
+ self.props.accelerator = '<Ctrl>Z'
class RedoButton(ToolButton):