If I set the Height-Property of a Row-Item, the Height keeps unchanged.
After a few attempts to set the height with another procedure I watched into the source code.
Code: Select all
if FRowItem <> Nil then
begin
FRowItem.Height := AValue;
FRowItem.Options := FRowItem.Options + [xroCustomHeight];
end
else if ...
I´ve found that line in the followed else-if-block. I think that line has to be executed in both cases, and not only in the else-if.
Could you please fix this in the next release?
Or am I wrong with my assumption?