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 /iw/task_gui.py | |
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
Diffstat (limited to 'iw/task_gui.py')
-rw-r--r-- | iw/task_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |