From: Richard Fairhurst Date: Sun, 29 Nov 2009 17:18:00 +0000 (+0000) Subject: more selection fixes X-Git-Tag: 0.5~586 X-Git-Url: https://git.openstreetmap.org/potlatch2.git/commitdiff_plain/6290bf477e1fdb204bad86e2bbc2162fa7b1227b more selection fixes --- diff --git a/net/systemeD/halcyon/NodeUI.as b/net/systemeD/halcyon/NodeUI.as index 0467874c..8f57b8e2 100644 --- a/net/systemeD/halcyon/NodeUI.as +++ b/net/systemeD/halcyon/NodeUI.as @@ -35,7 +35,6 @@ package net.systemeD.halcyon { public function redraw(sl:StyleList=null,forceDraw:Boolean=false):Boolean { // *** forcedraw can be removed - var tags:Object = node.getTagsCopy(); // special tags diff --git a/net/systemeD/halcyon/WayUI.as b/net/systemeD/halcyon/WayUI.as index e1b6a43a..e27a7c5e 100755 --- a/net/systemeD/halcyon/WayUI.as +++ b/net/systemeD/halcyon/WayUI.as @@ -401,11 +401,11 @@ package net.systemeD.halcyon { } override protected function mouseEvent(event:MouseEvent):void { - var node:Node = getNodeAt(event.localX, event.localY); - if ( node == null ) +// var node:Node = getNodeAt(event.localX, event.localY); +// if ( node == null ) map.entityMouseEvent(event, way); - else - map.entityMouseEvent(event, node); +// else +// map.entityMouseEvent(event, node); } }