Skip to content

Commit

Permalink
Merge branch 'master' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
jcsteh committed Aug 2, 2017
2 parents 058595e + baf0c32 commit fe66356
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/config/configSpec.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: UTF-8 -*-
#A part of NonVisual Desktop Access (NVDA)
#Copyright (C) 2006-2017 NV Access Limited, Babbage B.V.
#Copyright (C) 2006-2017 NV Access Limited, Babbage B.V., Davy Kager
#This file is covered by the GNU General Public License.
#See the file COPYING for more details.

Expand Down
5 changes: 5 additions & 0 deletions source/contentRecog/recogUi.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,11 @@ def recognizeNavigatorObject(recognizer):
@type recognizer: L{contentRecog.ContentRecognizer}
"""
global _activeRecog
if isinstance(api.getFocusObject(), RecogResultNVDAObject):
# Translators: Reported when content recognition (e.g. OCR) is attempted,
# but the user is already reading a content recognition result.
ui.message(_("Already in a content recognition result"))
return
nav = api.getNavigatorObject()
left, top, width, height = nav.location
try:
Expand Down
2 changes: 1 addition & 1 deletion source/gui/settingsDialogs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: UTF-8 -*-
#settingsDialogs.py
#A part of NonVisual Desktop Access (NVDA)
#Copyright (C) 2006-2017 NV Access Limited, Peter Vágner, Aleksey Sadovoy, Rui Batista, Joseph Lee, Heiko Folkerts, Zahari Yurukov, Leonard de Ruijter, Derek Riemer, Babbage B.V.
#Copyright (C) 2006-2017 NV Access Limited, Peter Vágner, Aleksey Sadovoy, Rui Batista, Joseph Lee, Heiko Folkerts, Zahari Yurukov, Leonard de Ruijter, Derek Riemer, Babbage B.V., Davy Kager
#This file is covered by the GNU General Public License.
#See the file COPYING for more details.

Expand Down
1 change: 1 addition & 0 deletions user_docs/en/changes.t2t
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ Highlights of this release include input of contracted braille, support for new
- By default, NVDA now only shows the parts of the context information that have changed on a braille display when an object gets focus. (#217)
- Previously, it always showed as much context information as possible, regardless of whether you have seen the same context information before.
- You can revert to the old behaviour by changing the new "Focus context presentation" setting in the Braille Settings dialog to "Always fill display".
- When using Braille, the cursor can be configured to be a different shape when tethered to focus or review. (#7112)


== Bug Fixes ==
Expand Down

0 comments on commit fe66356

Please sign in to comment.