diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-12-14 16:44:42 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-12-14 16:44:42 +0000 |
commit | b877eceb38d9a2cf4adf0e6ac150c67b4fb19fc0 (patch) | |
tree | c3d8deb9d81ddee3b1f194ebec86c8657ab131ea /textw | |
parent | c7c6303f505f1edac48ed5cf2d464e0797c8f316 (diff) | |
download | anaconda-b877eceb38d9a2cf4adf0e6ac150c67b4fb19fc0.tar.gz anaconda-b877eceb38d9a2cf4adf0e6ac150c67b4fb19fc0.tar.xz anaconda-b877eceb38d9a2cf4adf0e6ac150c67b4fb19fc0.zip |
2004-12-14 Jeremy Katz <katzj@redhat.com>
* dispatch.py (installSteps): Pass new arg to desktopchoice
* iw/desktop_choice_gui.py (DesktopChoiceWindow.getNext): Reset
package selection to defaults if selected (#142415)
* textw/desktop_choice_text.py (DesktopChoiceWindow): Likewise.
Diffstat (limited to 'textw')
-rw-r--r-- | textw/desktop_choice_text.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/textw/desktop_choice_text.py b/textw/desktop_choice_text.py index 18bc99354..f7d871f42 100644 --- a/textw/desktop_choice_text.py +++ b/textw/desktop_choice_text.py @@ -17,7 +17,7 @@ from rhpl.translate import _ from constants import productName class DesktopChoiceWindow: - def __call__(self, screen, intf, instclass, dispatch): + def __call__(self, screen, intf, instclass, dispatch, grpset): bb = ButtonBar (screen, (TEXT_OK_BUTTON, TEXT_BACK_BUTTON)) @@ -48,6 +48,8 @@ class DesktopChoiceWindow: dispatch.skipStep("package-selection", skip = 0) else: dispatch.skipStep("package-selection") + instclass.setGroupSelection(grpset, intf) + instclass.setPackageSelection(grpset.hdrlist, intf) screen.popWindow() |