SetStatus removes the message after some time so speakup will be able to read the next

This commit is contained in:
Manuel Cortez 2017-01-09 04:19:27 -06:00
parent b67ddf36ab
commit 06773f64cd

View File

@ -79,7 +79,7 @@ class Window(object):
break break
def check_changes(self, handler): def check_changes(self, handler):
if hasattr(handler, "selected_action"): if hasattr(handler, "selected_action") and handler.done == 1:
self.handlers.remove(handler) self.handlers.remove(handler)
getattr(self, handler.selected_action)(handler.dir) getattr(self, handler.selected_action)(handler.dir)
elif hasattr(handler, "controls"): elif hasattr(handler, "controls"):