summaryrefslogtreecommitdiffstats
path: root/iw/mouse_gui.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-06-25 16:33:12 +0000
committerMike Fulbright <msf@redhat.com>2002-06-25 16:33:12 +0000
commit9676ac1ecf2cdd09478099adc322716ea8913fc6 (patch)
treee637e32b39755567f487400c423bc6c411559930 /iw/mouse_gui.py
parent63fa21d56b3e7137e409c013507513b9d9453a38 (diff)
downloadanaconda-9676ac1ecf2cdd09478099adc322716ea8913fc6.tar.gz
anaconda-9676ac1ecf2cdd09478099adc322716ea8913fc6.tar.xz
anaconda-9676ac1ecf2cdd09478099adc322716ea8913fc6.zip
fun wiz bang idle handler to make scroll_to_cell work yay dont do this at home kids
Diffstat (limited to 'iw/mouse_gui.py')
-rw-r--r--iw/mouse_gui.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/iw/mouse_gui.py b/iw/mouse_gui.py
index 15b80f3a1..1d81fa39d 100644
--- a/iw/mouse_gui.py
+++ b/iw/mouse_gui.py
@@ -19,6 +19,8 @@ from re import *
from rhpl.translate import _, N_
from flags import flags
+from gui import setupTreeViewFixupIdleHandler
+
class MouseWindow(InstallWindow):
windowTitle = N_("Mouse Configuration")
htmlTag = "mouse"
@@ -243,6 +245,9 @@ class MouseWindow(InstallWindow):
sw.set_policy(gtk.POLICY_NEVER, gtk.POLICY_AUTOMATIC)
sw.add(self.mouseview)
box.pack_start(sw)
+
+ # ok hack to see if we can get scroll_to_cell to work
+ setupTreeViewFixupIdleHandler(self.mouseview, self.mousestore)
# then the port list
frame = gtk.Frame()