33 lines
749 B
Python
33 lines
749 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Fenrir TTY screen reader
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
|
|
from fenrirscreenreader.core.i18n import _
|
|
|
|
|
|
class command():
|
|
def __init__(self):
|
|
pass
|
|
|
|
def initialize(self, environment):
|
|
self.env = environment
|
|
|
|
def shutdown(self):
|
|
pass
|
|
|
|
def getDescription(self):
|
|
return _('exits review mode')
|
|
|
|
def run(self):
|
|
if not self.env['runtime']['settingsManager'].getSettingAsBool(
|
|
'review', 'leaveReviewOnCursorChange'):
|
|
return
|
|
if self.env['runtime']['cursorManager'].isReviewMode():
|
|
self.env['runtime']['cursorManager'].clearReviewCursor()
|
|
|
|
def setCallback(self, callback):
|
|
pass
|