summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rwxr-xr-xdraksnapshot-config2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 1ecc938..e97b58e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
- applet:
o use HAL in order to detect discs avaible for backup,
thus not detecting some internal SATA discs (#41107)
+- configurator:
+ o do not save config when clicking "Close" (#39790)
Version 0.14 - 26 September 2008, Thierry Vignaud
diff --git a/draksnapshot-config b/draksnapshot-config
index 3ab57e6..149cf74 100755
--- a/draksnapshot-config
+++ b/draksnapshot-config
@@ -183,7 +183,7 @@ gtkadd($my_win->{window},
]),
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() })
+ gtknew('Button', text => $::isEmbedded ? N("Cancel") : N("Close"), clicked => sub { quit() })
])
])
);