mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 01:36:16 +02:00
MG: fixed TRadioButton.DoAutoSize during loading
git-svn-id: trunk@3636 -
This commit is contained in:
parent
82b4e7b805
commit
b98ff19b65
@ -84,7 +84,7 @@ var
|
||||
begin
|
||||
If Autosizing or not AutoSize then
|
||||
Exit;
|
||||
if not HandleAllocated then exit;
|
||||
if (not HandleAllocated) or (csLoading in ComponentState) then exit;
|
||||
AutoSizing := True;
|
||||
DC := GetDC(Handle);
|
||||
Try
|
||||
@ -105,6 +105,9 @@ end;
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.9 2002/11/14 14:11:51 lazarus
|
||||
MG: fixed TRadioButton.DoAutoSize during loading
|
||||
|
||||
Revision 1.8 2002/09/08 19:09:55 lazarus
|
||||
Fixed and simplified TRadioButton
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user