From: Dave Stubbs Date: Tue, 8 Sep 2009 18:30:03 +0000 (+0000) Subject: fix node breaking ooops X-Git-Tag: 0.5~629 X-Git-Url: https://git.openstreetmap.org/potlatch2.git/commitdiff_plain/8ed8a52dea95333b59f8e33ea8c02a6f22fa9ca8 fix node breaking ooops --- diff --git a/net/systemeD/halcyon/connection/Node.as b/net/systemeD/halcyon/connection/Node.as index ef75101e..dd716c0d 100644 --- a/net/systemeD/halcyon/connection/Node.as +++ b/net/systemeD/halcyon/connection/Node.as @@ -39,7 +39,7 @@ package net.systemeD.halcyon.connection { public function set latp(latproj:Number):void { var oldLat:Number = this._lat; this._latproj = latproj; - this._lat = latp2lat(lat); + this._lat = latp2lat(latproj); markDirty(); dispatchEvent(new NodeMovedEvent(Connection.NODE_MOVED, this, oldLat, _lon)); }