mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 13:39:17 +02:00
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:
parent
2beaaa8625
commit
09455e27ba
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user