Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/speech_dispatcher.py
diff options
context:
space:
mode:
Diffstat (limited to 'speech_dispatcher.py')
-rw-r--r--speech_dispatcher.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/speech_dispatcher.py b/speech_dispatcher.py
index 4fad27f..99d35d9 100644
--- a/speech_dispatcher.py
+++ b/speech_dispatcher.py
@@ -14,7 +14,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-import gtk
+from gi.repository import Gdk
import time
import threading
import speechd
@@ -105,12 +105,12 @@ class EspeakThread(threading.Thread):
if type == speechd.CallbackType.INDEX_MARK:
mark = kargs['index_mark']
word_count = int(mark)
- gtk.gdk.threads_enter()
+ Gdk.threads_enter()
speech.highlight_cb(word_count)
- gtk.gdk.threads_leave()
+ Gdk.threads_leave()
elif type == speechd.CallbackType.END:
- gtk.gdk.threads_enter()
+ Gdk.threads_enter()
speech.reset_cb()
- gtk.gdk.threads_leave()
+ Gdk.threads_leave()
global done
done = True