summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rwxr-xr-xdraksnapshot-applet2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 0dadb54..1fc066e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,5 @@
- applet:
+ o do not notify again if already done
o do not skip initial check
o only show up if detecting new discs
o refresh cache of USB devices list
diff --git a/draksnapshot-applet b/draksnapshot-applet
index 4bdd41d..f32270d 100755
--- a/draksnapshot-applet
+++ b/draksnapshot-applet
@@ -152,7 +152,7 @@ sub silentCheck() {
# are there any updates ?
my @a = difference2(\@discs, \@old_discs);
- if (@a) {
+ if (@a && $state_global ne 'disk_found') {
go2State('disk_found');
}
@old_discs = @discs;