mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 13:50:06 +02:00
win32: skip AlphaBlend in design time (issue #0017080)
git-svn-id: trunk@26975 -
This commit is contained in:
parent
3ecb4329dc
commit
d53a9b30fa
@ -396,7 +396,7 @@ begin
|
|||||||
( not (csDesigning in lForm.ComponentState) and
|
( not (csDesigning in lForm.ComponentState) and
|
||||||
(lForm.ShowInTaskBar = stAlways)) then
|
(lForm.ShowInTaskBar = stAlways)) then
|
||||||
FlagsEx := FlagsEx or WS_EX_APPWINDOW;
|
FlagsEx := FlagsEx or WS_EX_APPWINDOW;
|
||||||
if lForm.AlphaBlend then
|
if not (csDesigning in lForm.ComponentState) and lForm.AlphaBlend then
|
||||||
FlagsEx := FlagsEx or WS_EX_LAYERED;
|
FlagsEx := FlagsEx or WS_EX_LAYERED;
|
||||||
end;
|
end;
|
||||||
SetStdBiDiModeParams(AWinControl, Params);
|
SetStdBiDiModeParams(AWinControl, Params);
|
||||||
|
Loading…
Reference in New Issue
Block a user