From f66b2ccbad68871360f899be7fa51c32dd5d0c65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Cort=C3=A9z?= Date: Wed, 29 Jul 2015 13:45:57 -0500 Subject: [PATCH] Added repeat item option to invisible interface --- src/controller/mainController.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/controller/mainController.py b/src/controller/mainController.py index efc4629a..c4cb3e81 100644 --- a/src/controller/mainController.py +++ b/src/controller/mainController.py @@ -1366,3 +1366,6 @@ class Controller(object): def copy_to_clipboard(self, *args, **kwargs): output.copy(self.get_current_buffer().get_message()) output.speak(_(u"Copied")) + + def repeat_item(self, *args, **kwargs): + output.speak(self.get_current_buffer().get_message()) \ No newline at end of file