Put back <Ctrl>Z as the Undo accelerator #1287

This commit is contained in:
Tomeu Vizoso 2009-09-14 18:19:09 +02:00
parent 184ff7ea52
commit db77ed8ab3

View File

@ -89,7 +89,7 @@ class UndoButton(ToolButton):
def __init__(self, **kwargs): def __init__(self, **kwargs):
ToolButton.__init__(self, 'edit-undo', **kwargs) ToolButton.__init__(self, 'edit-undo', **kwargs)
self.props.tooltip = _('Undo') self.props.tooltip = _('Undo')
self.props.accelerator = '<Ctrl>Q' self.props.accelerator = '<Ctrl>Z'
class RedoButton(ToolButton): class RedoButton(ToolButton):