diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-09-27 20:02:11 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-09-27 20:02:11 +0000 |
commit | d815768975685f9c043b720ed63d6be929682d4c (patch) | |
tree | 86078d7cedfb8603bfbd272897615b42db804d22 | |
parent | 502ae13aa42f0a8a3770e35895c89fc92002eaf3 (diff) | |
download | anaconda-d815768975685f9c043b720ed63d6be929682d4c.tar.gz anaconda-d815768975685f9c043b720ed63d6be929682d4c.tar.xz anaconda-d815768975685f9c043b720ed63d6be929682d4c.zip |
2006-09-27 Jeremy Katz <katzj@redhat.com>
* iw/task_gui.py (TaskWindow.getScreen): Have to remove since we
do a show_all on the vbox
* ui/tasksel.glade: Fix a tyop
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | iw/task_gui.py | 2 | ||||
-rw-r--r-- | ui/tasksel.glade | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2006-09-27 Jeremy Katz <katzj@redhat.com> + + * iw/task_gui.py (TaskWindow.getScreen): Have to remove since we + do a show_all on the vbox + * ui/tasksel.glade: Fix a tyop + 2006-09-26 David Cantrell <dcantrell@redhat.com> * network.py (Network): UI isn't using it, so removed references to diff --git a/iw/task_gui.py b/iw/task_gui.py index 786747f95..dcb4474dc 100644 --- a/iw/task_gui.py +++ b/iw/task_gui.py @@ -250,7 +250,7 @@ class TaskWindow(InstallWindow): self._createRepoStore() if not anaconda.id.instClass.allowExtraRepos: - self.xml.get_widget("addRepoBox").hide() + vbox.remove(self.xml.get_widget("addRepoBox")) self.xml.get_widget("addRepoButton").connect("clicked", self._addRepo) diff --git a/ui/tasksel.glade b/ui/tasksel.glade index 257245fc0..7c96d7567 100644 --- a/ui/tasksel.glade +++ b/ui/tasksel.glade @@ -186,7 +186,7 @@ </child> <child> - <widget class="GtkVBox" id="addReboBox"> + <widget class="GtkVBox" id="addRepoBox"> <property name="visible">True</property> <property name="homogeneous">False</property> <property name="spacing">6</property> |