Automatically save presets after running the wizard

This commit is contained in:
Alessandro Ranellucci 2013-11-11 21:45:58 +01:00
parent 885ab5844e
commit 33e160c1ed
2 changed files with 36 additions and 26 deletions

View file

@ -313,6 +313,11 @@ sub config_wizard {
}
}
$self->load_config($config);
if ($self->{mode} eq 'expert') {
for my $tab (values %{$self->{options_tabs}}) {
$tab->save_preset('My Settings');
}
}
}
}