|
From: <ala...@us...> - 2017-06-03 10:35:02
|
Revision: 495
http://sourceforge.net/p/latex-access/code/495
Author: alastair-irving
Date: 2017-06-03 10:35:00 +0000 (Sat, 03 Jun 2017)
Log Message:
-----------
Bug fix with read line function in NVDA plugin not working when processing is off.
Modified Paths:
--------------
nvda/latex_access.py
Modified: nvda/latex_access.py
===================================================================
--- nvda/latex_access.py 2015-03-13 19:58:35 UTC (rev 494)
+++ nvda/latex_access.py 2017-06-03 10:35:00 UTC (rev 495)
@@ -118,7 +118,7 @@
speech.speakMessage (spokenLine)
braille.handler.message (brailledLine)
else:
- speech.speakTextInfo(info,unit=textInfos.UNIT_LINE,reason=speech.REASON_CARET)
+ speech.speakTextInfo(info,unit=textInfos.UNIT_LINE,reason=controlTypes.REASON_CARET)
else:
speech.speakSpelling(info.text)
script_reportCurrentLine.__doc__ = _("If latex-access translation is on, Translates the current line into nemeth braille and speech. If translation is turned off, the current line is spoken as normal. If this keystroke is pressed twice, the current line is spellt out.")
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|