summaryrefslogtreecommitdiff
path: root/uidesigner
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2010-11-19 09:20:30 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2010-11-19 09:20:30 +0200
commitaf2b7a7e19595e46c47d74f6c7aa0bc5683930c9 (patch)
treebfc3738d00a1784231cf86f3b55def4f690bee2f /uidesigner
parentd54aea397a8320bc63713e0a66579bccbca64d69 (diff)
downloadfpGUI-af2b7a7e19595e46c47d74f6c7aa0bc5683930c9.tar.xz
UI Designer: Register BoxLayout property for RadioButton widget.
Diffstat (limited to 'uidesigner')
-rw-r--r--uidesigner/vfdwidgets.pas3
1 files changed, 2 insertions, 1 deletions
diff --git a/uidesigner/vfdwidgets.pas b/uidesigner/vfdwidgets.pas
index 8764c339..c8640a80 100644
--- a/uidesigner/vfdwidgets.pas
+++ b/uidesigner/vfdwidgets.pas
@@ -430,7 +430,7 @@ begin
wc.NameBase := 'CheckBox';
wc.AddProperty('Align', TPropertyEnum, 'Component alignment');
wc.AddProperty('BackgroundColor', TPropertyColor, '');
- wc.AddProperty('BoxLayout', TPropertyEnum, 'Is checkbox on left or right');
+ wc.AddProperty('BoxLayout', TPropertyEnum, 'Is checkbox image on left or right');
wc.AddProperty('Checked', TPropertyBoolean, 'Boolean value');
wc.AddProperty('Enabled', TPropertyBoolean, '');
wc.AddProperty('FontDesc', TPropertyFontDesc, 'The font used for displaying the text');
@@ -448,6 +448,7 @@ begin
wc.NameBase := 'RadioButton';
wc.AddProperty('Align', TPropertyEnum, 'Component alignment');
wc.AddProperty('BackgroundColor', TPropertyColor, '');
+ wc.AddProperty('BoxLayout', TPropertyEnum, 'Is radiobutton image on left or right');
wc.AddProperty('Checked', TPropertyBoolean, 'Boolean value');
wc.AddProperty('Enabled', TPropertyBoolean, '');
wc.AddProperty('FontDesc', TPropertyFontDesc, 'The font used for displaying the text');