diff options
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | draksnapshot-config | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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() }) ]) ]) ); |