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