Module: nagvis Branch: master Commit: 5d9df1cc445314589d671044a9d8511a8620506b URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis/commit/?id=5d9df1cc445314589d671044a9d8511a8620506b
Author: Roman Kyrylych <[email protected]> Date: Wed Aug 19 13:32:35 2009 +0300 gmap: Fixed Link dialog popping up when not needed Signed-off-by: Roman Kyrylych <[email protected]> --- uifx/src/modules/gmap/mediator/MainMD.as | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/uifx/src/modules/gmap/mediator/MainMD.as b/uifx/src/modules/gmap/mediator/MainMD.as index 163cc32..887df5f 100644 --- a/uifx/src/modules/gmap/mediator/MainMD.as +++ b/uifx/src/modules/gmap/mediator/MainMD.as @@ -110,7 +110,8 @@ package modules.gmap.mediator public function selectLink(link : Link) : void { - _view.linksBox.setCurrentState('right-expanded'); + if (link) + _view.linksBox.setCurrentState('right-expanded'); } public function gotoURL(url : String, newWindow : Boolean) : void ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
