mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 19:18:14 +02:00
Fixes issues with GroupBox
git-svn-id: trunk@23794 -
This commit is contained in:
parent
2c48944932
commit
0c7ac3484f
@ -386,12 +386,10 @@ begin
|
||||
case Msg of
|
||||
WM_ERASEBKGND, WM_NCPAINT, WM_PAINT, WM_CTLCOLORMSGBOX..WM_CTLCOLORSTATIC:
|
||||
begin
|
||||
Result := CallDefaultWindowProc(Window, Msg, WParam, LParam);
|
||||
// Result := WindowProc(Window, Msg, WParam, LParam);
|
||||
Result := WindowProc(Window, Msg, WParam, LParam);
|
||||
end;
|
||||
else
|
||||
Result := WindowProc(Window, Msg, WParam, LParam);
|
||||
// Result := CallDefaultWindowProc(Window, Msg, WParam, LParam);
|
||||
Result := CallDefaultWindowProc(Window, Msg, WParam, LParam);
|
||||
end;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user