summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAndrew Dyukov <adyukov@productengine.com>2009-12-14 21:38:22 +0200
committerAndrew Dyukov <adyukov@productengine.com>2009-12-14 21:38:22 +0200
commit7068d77ca32f6f96db546b1a0deca8d006cd9149 (patch)
tree3632c15aad784d1c23e295a4554bc90cfb54dc2d /indra
parent249ff4c81ba18b0a24315f543ba84a587868a452 (diff)
Fixed minor bug EXT-3045 ("Move" buttin seems to be unpressed while Move controls
panel is active (refer to screenshot)). --HG-- branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llmoveview.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llmoveview.cpp b/indra/newview/llmoveview.cpp
index c17427bec1..4e4646c052 100644
--- a/indra/newview/llmoveview.cpp
+++ b/indra/newview/llmoveview.cpp
@@ -160,9 +160,12 @@ void LLFloaterMove::setEnabled(BOOL enabled)
// virtual
void LLFloaterMove::setVisible(BOOL visible)
{
- // Ignore excessive calls of this method (from LLTransientFloaterMgr?).
+ // Do nothing with Stand/Stop Flying panel in excessive calls of this method (from LLTransientFloaterMgr?).
if (getVisible() == visible)
+ {
+ LLTransientDockableFloater::setVisible(visible);
return;
+ }
if (visible)
{
@@ -492,6 +495,7 @@ void LLFloaterMove::onOpen(const LLSD& key)
//virtual
void LLFloaterMove::setDocked(bool docked, bool pop_on_undock/* = true*/)
{
+ LLDockableFloater::setDocked(docked, pop_on_undock);
LLTransientDockableFloater::setDocked(docked, pop_on_undock);
}