summaryrefslogtreecommitdiffstats
path: root/iw/xconfig_gui.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-07-03 17:02:54 +0000
committerMike Fulbright <msf@redhat.com>2002-07-03 17:02:54 +0000
commite65a67645690a595ab44578afb104974e08af56f (patch)
tree473227e93dc9aa6e3f5789422282777cfaebdd9b /iw/xconfig_gui.py
parent4258320935f770a9fb364d66a19046da1c1d8286 (diff)
downloadanaconda-e65a67645690a595ab44578afb104974e08af56f.tar.gz
anaconda-e65a67645690a595ab44578afb104974e08af56f.tar.xz
anaconda-e65a67645690a595ab44578afb104974e08af56f.zip
add title to network interface edit dialog, remove scroll_to hack since gtk2+ is fixed now
Diffstat (limited to 'iw/xconfig_gui.py')
-rw-r--r--iw/xconfig_gui.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/iw/xconfig_gui.py b/iw/xconfig_gui.py
index ef22488fc..6bc95f997 100644
--- a/iw/xconfig_gui.py
+++ b/iw/xconfig_gui.py
@@ -30,8 +30,6 @@ 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")
@@ -718,9 +716,6 @@ class MonitorWindow (InstallWindow):
box.pack_start (synctable, gtk.FALSE, gtk.FALSE)
- # ok hack to see if we can get scroll_to_cell to work
- setupTreeViewFixupIdleHandler(self.monitorview, self.monitorstore)
-
return box
class XConfigWindow (InstallWindow):
@@ -1063,8 +1058,4 @@ class XConfigWindow (InstallWindow):
self.probedMem = self.videocard.primaryCard(useProbed=1).getVideoRam()
self.setCurrent(self.currentCard, self.currentMem)
- # ok hack to see if we can get scroll_to_cell to work
- setupTreeViewFixupIdleHandler(self.cardview, self.cardstore)
-
-
return self.topbox