summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gui/fpg_editbtn.pas10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/gui/fpg_editbtn.pas b/src/gui/fpg_editbtn.pas
index 12c5a8ef..70926c67 100644
--- a/src/gui/fpg_editbtn.pas
+++ b/src/gui/fpg_editbtn.pas
@@ -73,9 +73,12 @@ uses
constructor TfpgFileNameEdit.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
- FIsContainer := True;
- FFocusable := False;
- FFilter := '';
+ FWidth := 140;
+ FHeight := 24;
+ FIsContainer := True;
+ FFocusable := False;
+ FFilter := '';
+
FEdit := TfpgEdit.Create(self);
with FEdit do
begin
@@ -84,6 +87,7 @@ begin
FontDesc := '#Edit1';
TabOrder := 0;
end;
+
FButton := TfpgButton.Create(self);
with FButton do
begin