add soundicon for BarrierMode

This commit is contained in:
chrys
2018-06-18 00:15:35 +02:00
parent c3f3aeb2e5
commit 14f6ace29b
2 changed files with 83 additions and 0 deletions

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']['barrierManager'].resetBarrierChange()
def setCallback(self, callback):
pass