diff options
author | tv <tv@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94> | 2008-03-05 04:50:21 +0000 |
---|---|---|
committer | tv <tv@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94> | 2008-03-05 04:50:21 +0000 |
commit | 0a6a3e90eb2050b7463b56a157fc429b1193666d (patch) | |
tree | 1507bb8849716cf6fb8444605bb4db6ae4992bcb | |
parent | 1b6e7fbe22e7b85c01d5fe863539f139ad938db5 (diff) | |
download | draksnapshot-0a6a3e90eb2050b7463b56a157fc429b1193666d.tar draksnapshot-0a6a3e90eb2050b7463b56a157fc429b1193666d.tar.gz draksnapshot-0a6a3e90eb2050b7463b56a157fc429b1193666d.tar.bz2 draksnapshot-0a6a3e90eb2050b7463b56a157fc429b1193666d.tar.xz draksnapshot-0a6a3e90eb2050b7463b56a157fc429b1193666d.zip |
(setup_cyclic_check) unlike mdkapplet, we've no reason to skip initial check
git-svn-id: http://svn.mandriva.com/svn/soft/draksnapshot/trunk@238618 99302b65-d5f7-0310-b3dd-f8cd6f4e3d94
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | draksnapshot-applet | 5 |
2 files changed, 3 insertions, 5 deletions
@@ -1,3 +1,6 @@ +- applet: + o do not skip initial check + Version 0.2 - Mon Mar 3 2008, Thierry Vignaud - fix path in autostart files (#38418) diff --git a/draksnapshot-applet b/draksnapshot-applet index 60bf89a..761f468 100755 --- a/draksnapshot-applet +++ b/draksnapshot-applet @@ -157,11 +157,6 @@ sub setup_cyclic_check() { $timeout = Glib::Timeout->add( 5*60 * 1000, sub { # default to 5 minutes - my $first_run if 0; - if (!$first_run) { - $first_run = 1; - return 1; - } silentCheck(); 1; }); |