diff options
author | Eugene Mutavchi <emutavchi@productengine.com> | 2010-03-24 21:03:50 +0200 |
---|---|---|
committer | Eugene Mutavchi <emutavchi@productengine.com> | 2010-03-24 21:03:50 +0200 |
commit | 7fa6e0ad6c7a916b45ca1ff7f6603ca2a5726a97 (patch) | |
tree | 8b6f3ed513c90d7611c899891f80f02a579c6b43 | |
parent | d3a606f8323a32c660c71675257e3abd95cb097e (diff) |
Fixed normal bug EXT-5840 (Search floater auto-closes on telelport) - removed the closing of search floater at teleportation request.
Reviewed by Leyla Farazha at https://codereview.productengine.com/secondlife/r/94/
--HG--
branch : product-engine
-rw-r--r-- | indra/newview/llagent.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index c5d7f6f118..67126a999f 100644 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -5969,9 +5969,9 @@ bool LLAgent::teleportCore(bool is_local) // yet if the teleport will succeed. Look in // process_teleport_location_reply - // close the map and find panels so we can see our destination + // close the map panel so we can see our destination. + // we don't close search floater, see EXT-5840. LLFloaterReg::hideInstance("world_map"); - LLFloaterReg::hideInstance("search"); // hide land floater too - it'll be out of date LLFloaterReg::hideInstance("about_land"); |