Skip to content
Snippets Groups Projects
Commit 2703c2d6 authored by Christian Bay's avatar Christian Bay
Browse files

Fix library imports in synctex script

parent 6ce5b982
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ Hint: VIM configuration:
import gobject
from gi.repository.GObject import MainLoop, threads_init
import sys
import dbus
import dbus.service
......@@ -78,7 +78,7 @@ from dbus.mainloop.glib import DBusGMainLoop
# tell dbus that we use the gobject main loop
DBusGMainLoop(set_as_default=True)
loop = gobject.MainLoop()
loop = MainLoop()
#########################################
......@@ -202,6 +202,6 @@ thread.start()
# enable threads again, otherwise the quit_if_pdf_exits-thread will not be
# executed
gobject.threads_init()
threads_init()
loop.run()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment