LCL: toolbutton: fix down states. Issue #28286. Modified patch by Derit Agustin

git-svn-id: trunk@50870 -
This commit is contained in:
ondrej 2015-12-17 18:26:08 +00:00
parent f612624bb3
commit c95d982d72

View File

@ -903,17 +903,19 @@ begin
begin
if Down then
begin // checked states
if FMouseInControl then
if (tbfPressed in FToolButtonFlags) and FMouseInControl then
inc(ToolDetail, 2) // ttbButtonPressed
else if FMouseInControl then
inc(ToolDetail, 5) // ttbButtonCheckedHot
else
inc(ToolDetail, 4) // ttbButtonChecked
inc(ToolDetail, 4);// ttbButtonChecked
end
else
begin
if (tbfPressed in FToolButtonFlags) and FMouseInControl then
inc(ToolDetail, 2) else // ttbButtonPressed
if FMouseInControl then
inc(ToolDetail, 1); // ttbButtonHot
inc(ToolDetail, 2) // ttbButtonPressed
else if FMouseInControl then
inc(ToolDetail, 1);// ttbButtonHot
end;
end;
Result := ThemeServices.GetElementDetails(ToolDetail);