Skip to content

Commit

Permalink
In NVDA's Document Formatting settings dialog, the option to report s…
Browse files Browse the repository at this point in the history
…pelling errors now has a shortcut key (alt+r).

Fixes #793.
  • Loading branch information
jcsteh committed Dec 3, 2014
1 parent a74887f commit 90a7e59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion source/gui/settingsDialogs.py
Expand Up @@ -1051,7 +1051,7 @@ def makeSettings(self, settingsSizer):
settingsSizer.Add(self.styleCheckBox,border=10,flag=wx.BOTTOM)
# Translators: This is the label for a checkbox in the
# document formatting settings dialog.
self.spellingErrorsCheckBox=wx.CheckBox(self,wx.NewId(),label=_("Report spelling errors"))
self.spellingErrorsCheckBox=wx.CheckBox(self,wx.NewId(),label=_("Report spelling e&rrors"))
self.spellingErrorsCheckBox.SetValue(config.conf["documentFormatting"]["reportSpellingErrors"])
settingsSizer.Add(self.spellingErrorsCheckBox,border=10,flag=wx.BOTTOM)
# Translators: This is the label for a checkbox in the
Expand Down
4 changes: 4 additions & 0 deletions user_docs/en/changes.t2t
Expand Up @@ -11,6 +11,10 @@
- NVDA now automatically reports new text in mintty. (#4588)


== Changes ==
- In NVDA's Document Formatting settings dialog, the option to report spelling errors now has a shortcut key (alt+r). (#793)


== Bug Fixes ==
- In Microsoft Excel, handle the case when row and column header cells are merged. E.g. if A1 and B1 are merged, then B2 will now have A1 and B1 reported as its column header, rather than nothing at all. (#4617)
- When editing the content of a text box in Microsoft PowerPoint 2003, NVDA will correctly report the content of each line. Previously lines would increasingly be off by one character for each new paragraph. (#4619)
Expand Down

0 comments on commit 90a7e59

Please sign in to comment.