Skip to content

Commit

Permalink
In the Log Viewer, you can now save the log using the shortcut key co…
Browse files Browse the repository at this point in the history
…ntrol+s.

Also, the accelerator in the menu is now a instead of s, as is more standard.
Fixes #4532.
  • Loading branch information
josephsl authored and jcsteh committed Mar 16, 2016
1 parent ebd9383 commit 1de3c73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/gui/logViewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ def __init__(self, parent):
# Translators: The label for a menu item in NVDA log viewer to refresh log messages.
item = menu.Append(wx.ID_ANY, _("Refresh F5"))
self.Bind(wx.EVT_MENU, self.refresh, item)
item = menu.Append(wx.ID_SAVEAS)
# Translators: The label for a menu item in NVDA log viewer to save log file.
item = menu.Append(wx.ID_SAVEAS, _("Save &as... Ctrl+S"))
self.Bind(wx.EVT_MENU, self.onSaveAsCommand, item)
menu.AppendSeparator()
item = menu.Append(wx.ID_EXIT, _("E&xit"))
Expand Down

0 comments on commit 1de3c73

Please sign in to comment.