diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2020-06-17 17:16:50 +0100 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2020-06-17 17:19:57 +0100 |
commit | 203cc58cb229fa411d73d5952a74d7f11d54ef2b (patch) | |
tree | 1d46788e9f45030e8c53af0092c66c28269c8b71 /perl-install | |
parent | dd82bde21b8d94c235e41f79ec6de80287d4f0ac (diff) | |
download | drakx-203cc58cb229fa411d73d5952a74d7f11d54ef2b.tar drakx-203cc58cb229fa411d73d5952a74d7f11d54ef2b.tar.gz drakx-203cc58cb229fa411d73d5952a74d7f11d54ef2b.tar.bz2 drakx-203cc58cb229fa411d73d5952a74d7f11d54ef2b.tar.xz drakx-203cc58cb229fa411d73d5952a74d7f11d54ef2b.zip |
installer: restore flat list option for individual package selection
This allows the user to select packages that aren't enabled by rpmsrate.
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/steps_gtk.pm | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index b47a1346d..5a718ebed 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- restore flat list option for individual package selection - add option to install GRUB2 bootloader in \EFI\BOOT (mga#24282) - improved behaviour when installing on a removable device (mga#26761) o only use swap partitions on that device diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index a568de1da..beee19acd 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -520,6 +520,11 @@ sub choosePackagesTree { wait_message => N("Updating package selection"), code => sub { $o->loadSavePackagesOnFloppy($packages); 1 }, }, + { icon => 'reload', + help => N("Toggle between hierarchical and flat package list"), + wait_message => N("Updating package selection"), + code => sub { $common->{state}{flat} = !$common->{state}{flat}; 1 }, + }, if_(0, { icon => 'feather', help => N("Minimal install"), |