summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-12-14 16:44:42 +0000
committerJeremy Katz <katzj@redhat.com>2004-12-14 16:44:42 +0000
commitb877eceb38d9a2cf4adf0e6ac150c67b4fb19fc0 (patch)
treec3d8deb9d81ddee3b1f194ebec86c8657ab131ea /textw
parentc7c6303f505f1edac48ed5cf2d464e0797c8f316 (diff)
downloadanaconda-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.py4
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()