summaryrefslogtreecommitdiffstats
path: root/iw/language_gui.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-07-22 19:30:23 +0000
committerMike Fulbright <msf@redhat.com>2002-07-22 19:30:23 +0000
commit8ae09272ddc8b74df6a7cf4360d07ff7fd053ae0 (patch)
tree8b1f53f33b68539a278412e7c1998cfe80c854fb /iw/language_gui.py
parent907533a4342bcc8c4b6947b6f5555a91949840d2 (diff)
downloadanaconda-8ae09272ddc8b74df6a7cf4360d07ff7fd053ae0.tar.gz
anaconda-8ae09272ddc8b74df6a7cf4360d07ff7fd053ae0.tar.xz
anaconda-8ae09272ddc8b74df6a7cf4360d07ff7fd053ae0.zip
hack is back to make list/tree views to scroll_to correctly
Diffstat (limited to 'iw/language_gui.py')
-rw-r--r--iw/language_gui.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/iw/language_gui.py b/iw/language_gui.py
index c2d5b28fd..540cf6abf 100644
--- a/iw/language_gui.py
+++ b/iw/language_gui.py
@@ -16,6 +16,8 @@ import gtk
from iw_gui import *
from rhpl.translate import _, N_
+from gui import setupTreeViewFixupIdleHandler
+
class LanguageWindow (InstallWindow):
windowTitle = N_("Language Selection")
@@ -98,6 +100,8 @@ class LanguageWindow (InstallWindow):
sw.set_policy (gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC)
sw.add (self.listView)
+ setupTreeViewFixupIdleHandler(self.listView, self.listStore)
+
mainBox.pack_start (hbox, gtk.FALSE, gtk.FALSE, 10)
mainBox.pack_start (sw, gtk.TRUE, gtk.TRUE)