diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2010-12-30 16:05:16 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@gmail.com> | 2010-12-30 16:05:16 +0200 |
commit | 119d4ae9856cc7932bf9742c12d977250c632e66 (patch) | |
tree | 02f40d5b03e29199a980cf7794316b19ac06ec5d | |
parent | 2a9dc8ebacf5ec0177299c371746b649c105341e (diff) | |
download | fpGUI-119d4ae9856cc7932bf9742c12d977250c632e66.tar.xz |
Docview: apply min width/height constraints to the main form.
-rw-r--r-- | docview/src/frm_main.pas | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docview/src/frm_main.pas b/docview/src/frm_main.pas index 957bfc94..ee555f62 100644 --- a/docview/src/frm_main.pas +++ b/docview/src/frm_main.pas @@ -2494,6 +2494,8 @@ begin Hint := ''; ShowHint := True; WindowPosition := wpUser; + MinWidth := 430; + MinHeight := 300; OnCloseQuery := @MainFormCloseQuery; bvlStatusBar := TfpgBevel.Create(self); |