Skip to content

Commit

Permalink
Avoid repeating sentence in skim reading
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdaes committed Dec 29, 2018
1 parent fc5f8b0 commit 17ddae3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon/globalPlugins/placeMarkers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ def script_selectNextBookmark(self, gesture):
info.updateSelection()
if willSayAllResume(gesture):
info.move(textInfos.UNIT_LINE,1,endPoint="end")
speech.speakTextInfo(info,reason=controlTypes.REASON_CARET)
#speech.speakTextInfo(info,reason=controlTypes.REASON_CARET)
else:
ui.message(
# Translators: message presented when a bookmark is selected.
Expand Down Expand Up @@ -870,7 +870,7 @@ def script_selectPreviousBookmark(self, gesture):
info.updateSelection()
if willSayAllResume(gesture):
info.move(textInfos.UNIT_LINE,1,endPoint="end")
speech.speakTextInfo(info,reason=controlTypes.REASON_CARET)
#speech.speakTextInfo(info,reason=controlTypes.REASON_CARET)
else:
ui.message(
# Translators: message presented when a bookmark is selected.
Expand Down

0 comments on commit 17ddae3

Please sign in to comment.