diff options
Diffstat (limited to 'perl-install/install/steps_gtk.pm')
-rw-r--r-- | perl-install/install/steps_gtk.pm | 5 |
1 files changed, 5 insertions, 0 deletions
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"), |