Skip to content
This repository has been archived by the owner on Apr 7, 2024. It is now read-only.

Commit

Permalink
Added keyboard shortcuts.
Browse files Browse the repository at this point in the history
Added keyboard shortcuts.

Signed-off-by: Frank Jeschke <frank@caiaq.de>
  • Loading branch information
Frank Jeschke authored and Daniel Mack committed Sep 15, 2010
1 parent a6d091e commit 1a8290d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions MainWindow.py
Expand Up @@ -47,15 +47,15 @@ def __init__(self, parent, templates):

menuBar = wx.MenuBar()
menu1 = wx.Menu()
menu1.Append(101, "&Load", "")
menu1.Append(102, "&Save", "")
menu1.Append(101, "&Load\tCtrl+o", "")
menu1.Append(102, "&Save\tCtrl+s", "")
menu1.Append(103, "Save &as ...", "")
menu1.AppendSeparator()
menu1.Append(104, "&Check", "")
menu1.Append(105, "&Dump to stdout", "")
menu1.Append(106, "&Clear", "")
menu1.Append(106, "&Clear\tCtrl+c", "")
menu1.AppendSeparator()
menu1.Append(107, "&Quit", "")
menu1.Append(107, "&Quit\tCtrl+Q", "")
menuBar.Append(menu1, "&Descriptor set")

self.SetMenuBar(menuBar)
Expand Down

0 comments on commit 1a8290d

Please sign in to comment.