summaryrefslogtreecommitdiffstats
path: root/iw/xconfig.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-21 16:47:57 +0000
committerMatt Wilson <msw@redhat.com>1999-09-21 16:47:57 +0000
commit090918fb363e776e7b1836eaeb11a92216eb1cb9 (patch)
tree8b6c91593dd5a32073fb2fcd2826ba2c2932acdd /iw/xconfig.py
parent10395c942817f04a17481cabc9d25d1ba9678b6c (diff)
downloadanaconda-090918fb363e776e7b1836eaeb11a92216eb1cb9.tar.gz
anaconda-090918fb363e776e7b1836eaeb11a92216eb1cb9.tar.xz
anaconda-090918fb363e776e7b1836eaeb11a92216eb1cb9.zip
fixed infinite loop
Diffstat (limited to 'iw/xconfig.py')
-rw-r--r--iw/xconfig.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/xconfig.py b/iw/xconfig.py
index e7dab6601..439343ce3 100644
--- a/iw/xconfig.py
+++ b/iw/xconfig.py
@@ -78,7 +78,7 @@ class XCustomWindow (InstallWindow):
test = GtkAlignment ()
button = GtkButton (_("Test this configuration"))
- button.connect ("pressed", self.testPressed)
+ button.connect ("clicked", self.testPressed)
test.add (button)
box.pack_start (hbox, FALSE)
@@ -194,7 +194,7 @@ class XConfigWindow (InstallWindow):
test = GtkAlignment ()
button = GtkButton (_("Test this configuration"))
- button.connect ("pressed", self.testPressed)
+ button.connect ("clicked", self.testPressed)
test.add (button)
self.custom = GtkCheckButton (_("Customize X Configuration"))