summaryrefslogtreecommitdiffstats
path: root/iw/package_gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-07-11 21:49:13 +0000
committerMatt Wilson <msw@redhat.com>2001-07-11 21:49:13 +0000
commitb7a20ee1ea309e420d498d9e63aedc88d34ec237 (patch)
treeb3b639dcbaf41f8705b2b0d73310b8746b07892b /iw/package_gui.py
parentcefcf26d8fe90a9e57fadf41ac84798904c44896 (diff)
downloadanaconda-b7a20ee1ea309e420d498d9e63aedc88d34ec237.tar.gz
anaconda-b7a20ee1ea309e420d498d9e63aedc88d34ec237.tar.xz
anaconda-b7a20ee1ea309e420d498d9e63aedc88d34ec237.zip
make display of selected packages consistent between text and gui package group selection (#48774)
Diffstat (limited to 'iw/package_gui.py')
-rw-r--r--iw/package_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/package_gui.py b/iw/package_gui.py
index 43e04865e..b19f8b36c 100644
--- a/iw/package_gui.py
+++ b/iw/package_gui.py
@@ -544,7 +544,7 @@ class PackageSelectionWindow (InstallWindow):
else:
checkButton = GtkCheckButton (comp.name)
- checkButton.set_active (comp.isSelected())
+ checkButton.set_active (comp.isSelected(justManual = 1))
checkButton.connect('toggled', self.componentToggled, comp)
self.checkButtons.append ((checkButton, comp))
box.pack_start (checkButton)