summaryrefslogtreecommitdiffstats
path: root/iw/xconfig_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/xconfig_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/xconfig_gui.py')
-rw-r--r--iw/xconfig_gui.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/iw/xconfig_gui.py b/iw/xconfig_gui.py
index 6e00cadea..8dc361d20 100644
--- a/iw/xconfig_gui.py
+++ b/iw/xconfig_gui.py
@@ -30,6 +30,8 @@ from rhpl.videocard import Videocard_blacklist
from desktop import ENABLE_DESKTOP_CHOICE
+from gui import setupTreeViewFixupIdleHandler
+
ddc_monitor_string = _("DDC Probed Monitor")
unprobed_monitor_string = _("Unprobed Monitor")
@@ -737,6 +739,8 @@ class MonitorWindow (InstallWindow):
synctable.attach(align, 3, 4, 1, 2)
box.pack_start (synctable, gtk.FALSE, gtk.FALSE)
+
+ setupTreeViewFixupIdleHandler(self.monitorview, self.monitorstore)
return box
@@ -1069,4 +1073,6 @@ class XConfigWindow (InstallWindow):
self.probedMem = self.videocard.primaryCard(useProbed=1).getVideoRam()
self.setCurrent(self.currentCard, self.currentMem)
+ setupTreeViewFixupIdleHandler(self.cardview, self.cardstore)
+
return self.topbox