diff options
| author | Todd Stinson <stinson@lindenlab.com> | 2012-06-04 18:22:35 -0700 | 
|---|---|---|
| committer | Todd Stinson <stinson@lindenlab.com> | 2012-06-04 18:22:35 -0700 | 
| commit | 527fb080f5352ad3c96d9fb40d737a45fc5ad33d (patch) | |
| tree | 268d1cbc8b8b92a2d185dc73dbd5dd29bc721b3f | |
| parent | 9d615c1e1d0e52b619972d6003d97681c791711f (diff) | |
BUGFIX: Correcting selection behavior where the floater edit fields were not being updated if the object selected was not in range of the viewer.
| -rw-r--r-- | indra/newview/llfloaterpathfindingobjects.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llfloaterpathfindingobjects.cpp b/indra/newview/llfloaterpathfindingobjects.cpp index 7ac0d05bac..56f45a886f 100644 --- a/indra/newview/llfloaterpathfindingobjects.cpp +++ b/indra/newview/llfloaterpathfindingobjects.cpp @@ -538,6 +538,7 @@ void LLFloaterPathfindingObjects::onTeleportClicked()  void LLFloaterPathfindingObjects::onScrollListSelectionChanged()  {  	updateOnScrollListChange(); +	updateControls();  }  void LLFloaterPathfindingObjects::onInWorldSelectionListChanged()  | 
