diff options
| -rw-r--r-- | indra/newview/llmoveview.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llmoveview.cpp b/indra/newview/llmoveview.cpp index 0f22a50093..4ccf5e1c7b 100644 --- a/indra/newview/llmoveview.cpp +++ b/indra/newview/llmoveview.cpp @@ -200,7 +200,8 @@ void LLFloaterMove::setFlyingMode(BOOL fly)  	if (instance)  	{  		instance->setFlyingModeImpl(fly); -		instance->showModeButtons(!fly); +		BOOL is_sitting = isAgentAvatarValid() && gAgentAvatarp->isSitting(); +		instance->showModeButtons(!fly && !is_sitting);  	}  	if (fly)  	{  | 
