summaryrefslogtreecommitdiffstats
path: root/iw/datacombo.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-05-19 17:53:56 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-05-19 17:53:56 +0000
commit702c46696928191e663531cef567d391c0bdc024 (patch)
tree1a9f82de2e671e5f3b456417a9d50941da536f1f /iw/datacombo.py
parent43a704ac61b359d05f026ca1b2f241e098c01115 (diff)
downloadanaconda-702c46696928191e663531cef567d391c0bdc024.tar.gz
anaconda-702c46696928191e663531cef567d391c0bdc024.tar.xz
anaconda-702c46696928191e663531cef567d391c0bdc024.zip
* gui.py (handleRenderCallback): Sure would be nice if I could keep
indentation correct when modifying functions. Discontinue use of gtk.gdk.threads_init() and use gobject.threads_init() because of our use of callbacks. Remove threads_enter/leave wrapper around gtk.main() * iw/checklist.py: Remove threads_enter/leave wrapper around gtk.main() since we're using gobject.threads_init() now. * iw/datacombo.py: Likewise. * iw/ipwidget.py: Likewise. * iw/pixmapRadioButtonGroup.py: Likewise. * iw/release_notes.py: Likewise.
Diffstat (limited to 'iw/datacombo.py')
-rw-r--r--iw/datacombo.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/iw/datacombo.py b/iw/datacombo.py
index 8f227c8ec..d33f53088 100644
--- a/iw/datacombo.py
+++ b/iw/datacombo.py
@@ -82,7 +82,5 @@ if __name__ == "__main__":
win.add(cb)
win.show_all()
- gtk.threads_enter()
gtk.main()
- gtk.threads_leave()