diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-21 16:47:57 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-21 16:47:57 +0000 |
commit | 090918fb363e776e7b1836eaeb11a92216eb1cb9 (patch) | |
tree | 8b6c91593dd5a32073fb2fcd2826ba2c2932acdd /iw/xconfig.py | |
parent | 10395c942817f04a17481cabc9d25d1ba9678b6c (diff) | |
download | anaconda-090918fb363e776e7b1836eaeb11a92216eb1cb9.tar.gz anaconda-090918fb363e776e7b1836eaeb11a92216eb1cb9.tar.xz anaconda-090918fb363e776e7b1836eaeb11a92216eb1cb9.zip |
fixed infinite loop
Diffstat (limited to 'iw/xconfig.py')
-rw-r--r-- | iw/xconfig.py | 4 |
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")) |