summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2011-01-12 16:47:20 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2011-01-12 16:47:20 +0200
commitfcf07507067bbb16ff11331f2fa5f88248b9b4a2 (patch)
treeb70598117aae4570acc65ebbd55c1837d27884a9 /src
parent718a6197155cdb0cd48605c2a914cc08f39395be (diff)
downloadfpGUI-fcf07507067bbb16ff11331f2fa5f88248b9b4a2.tar.xz
Fix stupid typo bug in HandleMove.
We used FHeight instead of FLeft!! Dope!
Diffstat (limited to 'src')
-rw-r--r--src/corelib/fpg_base.pas2
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;