diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/fpg_editbtn.pas | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/fpg_editbtn.pas b/src/gui/fpg_editbtn.pas index 082dc59e..785c6ecd 100644 --- a/src/gui/fpg_editbtn.pas +++ b/src/gui/fpg_editbtn.pas @@ -12,7 +12,8 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Description: - Defines a Text Edit control. Also known a Text Entry control. + This unit contains various "composite" components. Components that + work together as a single component. } unit fpg_editbtn; @@ -28,10 +29,11 @@ uses ,fpg_widget ,fpg_edit ,fpg_button + ,fpg_panel ; type - TfpgFileNameEdit = class(TfpgWidget) + TfpgFileNameEdit = class(TfpgPanel) private FEdit: TfpgEdit; FButton: TfpgButton; @@ -75,8 +77,6 @@ begin inherited Create(AOwner); FWidth := 140; FHeight := 24; - FIsContainer := True; - FFocusable := False; FFilter := ''; FEdit := TfpgEdit.Create(self); |