Changeset 335

Show
Ignore:
Timestamp:
08/10/07 22:44:51 (1 year ago)
Author:
tom
Message:

catch rare moment when stop panning happens but start panning doesn't

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/as3/lib/com/modestmaps/core/MarkerClip.as

    r334 r335  
    118118            public function onMapStopPanning(event:MapEvent):void 
    119119            { 
    120                 x = starting.x; 
    121                 y = starting.y; 
     120                if (starting) { 
     121                        x = starting.x; 
     122                        y = starting.y; 
     123                    } 
    122124                updateClips(); 
    123125            }