diff options
author | Matt Wilson <msw@redhat.com> | 2001-07-11 21:49:13 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-07-11 21:49:13 +0000 |
commit | b7a20ee1ea309e420d498d9e63aedc88d34ec237 (patch) | |
tree | b3b639dcbaf41f8705b2b0d73310b8746b07892b /iw/package_gui.py | |
parent | cefcf26d8fe90a9e57fadf41ac84798904c44896 (diff) | |
download | anaconda-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.py | 2 |
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) |