summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rwxr-xr-xdraksnapshot-config4
2 files changed, 5 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 3f4277d..6e79f86 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,5 @@
- configurator:
+ o hide list under an "Advanced" expander
o set 755 perms on cron entry (#39699)
- draksnapshot-restore wasn't installed
diff --git a/draksnapshot-config b/draksnapshot-config
index 5362a36..449763b 100755
--- a/draksnapshot-config
+++ b/draksnapshot-config
@@ -143,10 +143,14 @@ gtkadd($my_win->{window},
];
} @ordered_intervals
]),
+ 0, gtknew('Expander', text => N("Advanced"),
+ child => gtknew('VBox', children => [
0, gtknew('Title2', label => N("Backup list")),
1, format_list($backup_list, 1),
0, gtknew('Title2', label => N("Exclude list")),
1, format_list($exclude_list),
+ ]),
+ ),
0, gtknew('HButtonBox', layout => 'end', border_width => 5, spacing => 5, children_loose => [
gtknew('Button', text => N("Apply"), clicked => \&save),
gtknew('Button', text => $::isEmbedded ? N("Cancel") : N("Close"), clicked => sub { save(); quit() })