diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2011-01-10 23:45:49 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2011-01-11 09:45:35 +0200 |
commit | aa1bf45f5709d5449e8981aa42899a0830318ad9 (patch) | |
tree | f0952944d02bf411e70fbd67014165a4be206f18 | |
parent | 9a622052b07b1605fe4cf4465404df11f0fd12da (diff) | |
download | fpGUI-aa1bf45f5709d5449e8981aa42899a0830318ad9.tar.xz |
DocView config dialog fix. A button didn't have its Anchors set.
-rw-r--r-- | docview/src/frm_configuration.pas | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docview/src/frm_configuration.pas b/docview/src/frm_configuration.pas index b3bb37f9..d73613c9 100644 --- a/docview/src/frm_configuration.pas +++ b/docview/src/frm_configuration.pas @@ -461,6 +461,7 @@ begin begin Name := 'btnResetColors'; SetPosition(12, 328, 100, 24); + Anchors := [anLeft,anBottom]; Text := 'Reset Colors'; Down := False; FontDesc := '#Label1'; |