Patch from mazen for trayicon. Updates Visible if changing the state of the trayicon fails.

git-svn-id: trunk@17854 -
This commit is contained in:
sekelsenmat 2008-12-17 14:11:48 +00:00
parent 2beaaa8625
commit 09455e27ba

View File

@ -93,9 +93,10 @@ begin
FVisible := False;
if not(csDesigning in ComponentState) then
Result := TWSCustomTrayIconClass(WidgetSetClass).Hide(Self)
else
if not(csDesigning in ComponentState) then begin
Result := TWSCustomTrayIconClass(WidgetSetClass).Hide(Self);
FVisible := not Result;
end else
Result := false;
end;
@ -115,9 +116,10 @@ begin
FVisible := True;
if not(csDesigning in ComponentState) then
Result := TWSCustomTrayIconClass(WidgetSetClass).Show(Self)
else
if not(csDesigning in ComponentState) then begin
Result := TWSCustomTrayIconClass(WidgetSetClass).Show(Self);
FVisible := Result;
end else
Result := false;
end;