diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-10-29 13:37:46 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2010-10-29 13:37:46 +0200 |
commit | 6b581c77c401905e5bf72ed6aa133f0e046126a2 (patch) | |
tree | 260537acd4e1b7e38928c8500d9aedae3afe1595 /src/corelib | |
parent | e6eb439e31dbbeb21db5c1d017021e4a7081ed0b (diff) | |
download | fpGUI-6b581c77c401905e5bf72ed6aa133f0e046126a2.tar.xz |
Published the DND propertys for some of the most used components.
This is so they can be tested. Once DND stabilizes, I'll make the
properties available on the other components too.
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/fpg_widget.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/fpg_widget.pas b/src/corelib/fpg_widget.pas index 374a76ed..5e3ba007 100644 --- a/src/corelib/fpg_widget.pas +++ b/src/corelib/fpg_widget.pas @@ -165,7 +165,7 @@ type procedure Invalidate; // double check this works as developers expect???? property FormDesigner: TObject read FFormDesigner write SetFormDesigner; property Parent: TfpgWidget read GetParent write SetParent; - property AcceptDrops: boolean read FAcceptDrops write SetAcceptDrops; + property AcceptDrops: boolean read FAcceptDrops write SetAcceptDrops default False; property ActiveWidget: TfpgWidget read FActiveWidget write SetActiveWidget; property IsContainer: Boolean read FIsContainer; property Visible: boolean read FVisible write SetVisible default True; |