diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2015-08-18 15:40:36 +0100 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@gmail.com> | 2015-08-22 09:08:32 +0100 |
commit | 6a1f2b06c5c11288afd376a6310ff088484768e9 (patch) | |
tree | bdbaae8e739482dd901e37502da5c5f6d5545b3a | |
parent | 7a840bd1da714ff057995bebf5240602e25a772d (diff) | |
download | fpGUI-6a1f2b06c5c11288afd376a6310ff088484768e9.tar.xz |
SpinEdit & SpinEditFloat now has a default Height - same as TfpgEdit.
-rw-r--r-- | src/gui/fpg_spinedit.pas | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/fpg_spinedit.pas b/src/gui/fpg_spinedit.pas index 6061eb3b..280529d4 100644 --- a/src/gui/fpg_spinedit.pas +++ b/src/gui/fpg_spinedit.pas @@ -427,6 +427,7 @@ end; constructor TfpgAbstractSpinEdit.Create(AOwner: TComponent); begin inherited Create(AOwner); + FHeight := 24; FButtonWidth := 13; // width of spin buttons Shape := bsSpacer; |