diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2011-01-12 16:47:20 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2011-01-12 16:47:20 +0200 |
commit | fcf07507067bbb16ff11331f2fa5f88248b9b4a2 (patch) | |
tree | b70598117aae4570acc65ebbd55c1837d27884a9 | |
parent | 718a6197155cdb0cd48605c2a914cc08f39395be (diff) | |
download | fpGUI-fcf07507067bbb16ff11331f2fa5f88248b9b4a2.tar.xz |
Fix stupid typo bug in HandleMove.
We used FHeight instead of FLeft!! Dope!
-rw-r--r-- | src/corelib/fpg_base.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/fpg_base.pas b/src/corelib/fpg_base.pas index 2fb97580..1a3b4089 100644 --- a/src/corelib/fpg_base.pas +++ b/src/corelib/fpg_base.pas @@ -1222,7 +1222,7 @@ begin if FLeft <> x then begin if not (csLoading in ComponentState) then - FPrevLeft := FHeight + FPrevLeft := FLeft else FPrevLeft := x; FLeft := x; |