summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>2008-04-02 14:05:49 +0000
committertv <tv@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>2008-04-02 14:05:49 +0000
commit64b79d1699357d1e15a7efe427e560b8c087128f (patch)
tree0eadd80bce221d102480847e703388f03251cc61
parentb3c58176ba3e1257cf57aa5babd3315fac44e801 (diff)
downloaddraksnapshot-64b79d1699357d1e15a7efe427e560b8c087128f.tar
draksnapshot-64b79d1699357d1e15a7efe427e560b8c087128f.tar.gz
draksnapshot-64b79d1699357d1e15a7efe427e560b8c087128f.tar.bz2
draksnapshot-64b79d1699357d1e15a7efe427e560b8c087128f.tar.xz
draksnapshot-64b79d1699357d1e15a7efe427e560b8c087128f.zip
add a tooltip in order to explain what are intervals (#39509)
git-svn-id: http://svn.mandriva.com/svn/soft/draksnapshot/trunk@241732 99302b65-d5f7-0310-b3dd-f8cd6f4e3d94
-rw-r--r--NEWS1
-rwxr-xr-xdraksnapshot-config4
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 704f237..9b8d8ee 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,5 @@
- configurator:
+ o add a tooltip in order to explain what are intervals (#39509)
o hide list under an "Advanced" expander
o set 755 perms on cron entry (#39699)
o use spin buttons for intervals
diff --git a/draksnapshot-config b/draksnapshot-config
index 4645480..722edd6 100755
--- a/draksnapshot-config
+++ b/draksnapshot-config
@@ -139,7 +139,9 @@ gtkadd($my_win->{window},
map {
[
gtknew('Label_Left', text => $interval_titles{$_}),
- $entries{$_} = gtknew('SpinButton', value => $default_intervals{$_}, lower => 0, upper => 100)
+ $entries{$_} = gtknew('SpinButton', value => $default_intervals{$_}, lower => 0, upper => 100,
+ tip => N("The number of snapshots for this type of interval (\"%s\") that will be stored", $_)
+ )
];
} @ordered_intervals
]),