== Reverse Button ==
* Doesn't look like a button
-* Clicking reverse doesn't update the toolbox (toolbox only recalculates itself on selection)
* clockwise / anticlockwise are backwards
Requested enhancements
controller.map.setPurgable([node], false);
resetElastic(node);
lastClick=node;
+ controller.updateSelectionUI();
} else if ( entity is Node ) {
if (entity==lastClick && (new Date().getTime()-lastClickTime.getTime())<1000) {
if (Way(firstSelected).length==1 && Way(firstSelected).getNode(0).parentWays.length==1) {
selection = [way];
controller.updateSelectionUI();
initWay = way;
+ way.addEventListener(Connection.WAY_REORDERED, updateSelectionUI, false, 0, true);
+ }
+
+ private function updateSelectionUI(e:Event):void {
+ controller.updateSelectionUI();
}
/** Tidy up UI as we transition to a new state without the current selection. */