+ private function licenceToggle():void {
+ // ** FIXME: this is an inelegant patch for the short-term issue of highlighting licensing status
+ var conn:Connection=Map(Globals.vars.root).editableLayer.connection;
+ if (conn.statusFetcher) {
+ conn.statusFetcher=null;
+ } else {
+ conn.statusFetcher=new StatusFetcher("http://wtfe.gryph.de/api/0.6/userlist",conn);
+ conn.statusFetcher.fetch(conn.getAllLoadedEntities());
+ // ** FIXME: needs to also switch map style
+ }
+ }
+