LCL: Make the initial height of ToggleBox match with Button. Issue #30536, patch from Alexey Torgashin.

git-svn-id: trunk@52961 -
This commit is contained in:
juha 2016-09-13 12:42:03 +00:00
parent c3bce1ccfe
commit cdd2334167
2 changed files with 7 additions and 0 deletions

View File

@ -16,6 +16,12 @@ begin
RegisterToggleBox;
end;
class function TToggleBox.GetControlClassDefaultSize: TSize;
begin
//Use TButton's size
Result := TButton.GetControlClassDefaultSize;
end;
procedure TToggleBox.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);

View File

@ -1341,6 +1341,7 @@ type
TToggleBox = class(TCustomCheckBox)
protected
class procedure WSRegisterClass; override;
class function GetControlClassDefaultSize: TSize; override;
procedure CreateParams(var Params: TCreateParams); override;
property ParentColor default false;
public