summaryrefslogtreecommitdiff
path: root/portato/gui
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-03-19 17:19:22 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-03-19 17:19:22 +0100
commit1510350c45a0f175eacaa370d02aafba92979c50 (patch)
treeaac86cc6ae40f618aeb3bd639ddfa73a8cc6b586 /portato/gui
parent0e97cc678cb9ec813460ca2e60a23595e753c2f8 (diff)
downloadportato-1510350c45a0f175eacaa370d02aafba92979c50.tar.gz
portato-1510350c45a0f175eacaa370d02aafba92979c50.tar.bz2
portato-1510350c45a0f175eacaa370d02aafba92979c50.zip
Init dbus threads using a plugin
Diffstat (limited to 'portato/gui')
-rw-r--r--portato/gui/windows/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py
index 2dbecde..7ddd868 100644
--- a/portato/gui/windows/main.py
+++ b/portato/gui/windows/main.py
@@ -1655,7 +1655,7 @@ class MainWindow (Window):
"""
Main.
"""
- gobject.threads_init()
+ plugin.hook("thread_init")(gobject.threads_init)()
# now subthreads can run normally, but are not allowed to touch the GUI. If threads should change sth there - use gobject.idle_add().
# for more informations on threading and gtk: http://www.async.com.br/faq/pygtk/index.py?req=show&file=faq20.006.htp
gtk.main()