diff options
author | Sergei Litovchuk <slitovchuk@productengine.com> | 2009-10-28 19:35:25 +0200 |
---|---|---|
committer | Sergei Litovchuk <slitovchuk@productengine.com> | 2009-10-28 19:35:25 +0200 |
commit | 2735bbd655993a0237ab82dda902fa260b88e875 (patch) | |
tree | e7b9153c5006a0f8d0d7cf996b759cf44a5276b4 /indra | |
parent | c70214f941b128d88e66d435438fe0db36404765 (diff) |
Fixed normal bug EXT-1523 'Side Tray can become stuck in mode where it expands every time you click the ground'.
Fixed opening Side Tray upon estate covenant reply arrival.
--HG--
branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llviewermessage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 791ec07349..51f8876d48 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -5680,7 +5680,7 @@ void onCovenantLoadComplete(LLVFS *vfs, LLPanelLandCovenant::updateCovenantText(covenant_text); LLFloaterBuyLand::updateCovenantText(covenant_text, asset_uuid); - LLPanelPlaceInfo* panel = dynamic_cast<LLPanelPlaceInfo*>(LLSideTray::getInstance()->showPanel("panel_place_info", LLSD())); + LLPanelPlaceInfo* panel = LLSideTray::getInstance()->findChild<LLPanelPlaceInfo>("panel_place_info"); if (panel) { panel->updateCovenantText(covenant_text); |