summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rwxr-xr-xdraksnapshot-applet2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 7764add..b5431de 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+- delay first check by 30s so that notification goes at the right
+ place
+
Version 0.13 - 22 September 2008, Thierry Vignaud
- new icons
diff --git a/draksnapshot-applet b/draksnapshot-applet
index 35634f7..bbe1d66 100755
--- a/draksnapshot-applet
+++ b/draksnapshot-applet
@@ -118,7 +118,7 @@ shouldStart() or die "$localfile should be set to TRUE: please use --force or -f
go2State('okay');
gtkflush();
-firstCheck();
+Glib::Timeout->add(($::testing ? 1 : 30) * 1000, sub { firstCheck(); 0 });
$SIG{USR1} = 'IGNORE';