Create 20000-reset_last_cursor_attribute.py

This commit is contained in:
chrys87 2018-05-29 15:10:42 +02:00 committed by GitHub
parent 9589b05629
commit c0f308dab4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,24 @@
#!/bin/python
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from fenrirscreenreader.core import debug
class command():
def __init__(self):
pass
def initialize(self, environment):
self.env = environment
def shutdown(self):
pass
def getDescription(self):
return 'No Description found'
def run(self):
self.env['runtime']['attributeManager'].resetLastCursorAttribute()
def setCallback(self, callback):
pass