Merge branch 'master' into wordWrappingEndOfScreenBell

This commit is contained in:
chrys
2016-10-21 01:16:01 +02:00
6 changed files with 64 additions and 2 deletions

View File

@@ -127,3 +127,9 @@ class outputManager():
self.env['runtime']['debug'].writeDebugOut("\"playSoundIcon\" in outputManager.speakText ",debug.debugLevel.ERROR)
self.env['runtime']['debug'].writeDebugOut(str(e),debug.debugLevel.ERROR)
return False
def announceActiveCursor(self, interrupt_p=False):
if self.env['runtime']['cursorManager'].isReviewMode():
self.presentText(' review cursor ', interrupt=interrupt_p)
else:
self.presentText(' text cursor ', interrupt=interrupt_p)