lcl: treeview: High-DPI: Indent fix r54435 #25d25e78b3. Issue #31558

git-svn-id: trunk@54437 -
This commit is contained in:
ondrej 2017-03-17 21:20:01 +00:00
parent d1d8c18ddc
commit 9219f84705

View File

@ -4521,7 +4521,7 @@ end;
function TCustomTreeView.GetRealIndent: Integer;
begin
if FIndent=0 then
Result := MulDiv(FIndent, Font.PixelsPerInch, 96)
Result := MulDiv(15, Font.PixelsPerInch, 96)
else
Result := FIndent;
end;