Small TFontComboBox bug/feature
Status: Inactive
Brought to you by:
twm
TFontComboBox's height is based on the current font
setting.
ie: The height is 20 pixels for the font MS Sans Serif,
regular, 8
But, a standand TComboBox is 21 pixels
Its only a small error, but it looks bad when you mix the
two sizes on one dialog.
Increasing the font size to 9 does nothing. Increasing to
10 makes the combobox height 23 pixels.
POSSIBLE FIX
Change the last line of GetItemHeight in RxCombos.pas
OLD
Result := Metrics.tmHeight + 1;
NEW
Result := Metrics.tmHeight + 2;
Why was 1 added? Is it a border setting? Do we need to
get this value from