diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | draksnapshot-applet | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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; |