mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 16:48:27 +02:00
LCL-CustomDrawn: Dont consider invisible controls to disable drawing covered controls
git-svn-id: trunk@36704 -
This commit is contained in:
parent
80721245e5
commit
a9e7650b4e
@ -1059,6 +1059,9 @@ begin
|
||||
if not (lChild is TWinControl) then Continue;
|
||||
lWinChild := TWinControl(lChild);
|
||||
|
||||
// Ignore invisible controls
|
||||
if not lWinChild.Visible then Continue;
|
||||
|
||||
// ToDo: Ignore alpha blended controls
|
||||
|
||||
// Basic case: alClient
|
||||
|
Loading…
Reference in New Issue
Block a user