diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-03-21 17:37:41 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-03-21 17:37:41 +0000 |
commit | f7e304c9b9040d4318d06e85008b62fb974a6207 (patch) | |
tree | 3bab8fb06365210406c4a623a1372a71cde5e7e4 /mdkapplet | |
parent | 93a1ff1c9f8da0dea35827f7febb961787140514 (diff) | |
download | mgaonline-f7e304c9b9040d4318d06e85008b62fb974a6207.tar mgaonline-f7e304c9b9040d4318d06e85008b62fb974a6207.tar.gz mgaonline-f7e304c9b9040d4318d06e85008b62fb974a6207.tar.bz2 mgaonline-f7e304c9b9040d4318d06e85008b62fb974a6207.tar.xz mgaonline-f7e304c9b9040d4318d06e85008b62fb974a6207.zip |
(setState) do not show icon while waiting for initial check
Diffstat (limited to 'mdkapplet')
-rwxr-xr-x | mdkapplet | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -449,7 +449,7 @@ sub setState { my $tmp = gtkcreate_pixbuf($state{$state_type}{colour}[0]); $icon->set_from_pixbuf($tmp); $icon->set_tooltip(formatAlaTeX(translate($state{$state_type}{tt}[0]))); - $icon->set_visible($state_type ne 'okay'); + $icon->set_visible(!member($state_type, qw(delayed okay))); gtkflush(); # so that bubbles are displayed on right icon if ($state{$state_type}{tt}[0] && $icon->isa('Gtk2::StatusIcon') && !$state{$state_type}{do_not_use_bubble}) { |