diff options
Diffstat (limited to 'indra/newview/lltoolfocus.cpp')
-rw-r--r-- | indra/newview/lltoolfocus.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/indra/newview/lltoolfocus.cpp b/indra/newview/lltoolfocus.cpp index c439797c47..cdfc6c2ebf 100644 --- a/indra/newview/lltoolfocus.cpp +++ b/indra/newview/lltoolfocus.cpp @@ -69,13 +69,19 @@ LLToolCamera::~LLToolCamera() // virtual void LLToolCamera::handleSelect() { - if (gFloaterTools) gFloaterTools->setStatusText("Click and drag to change view"); + if (gFloaterTools) + { + gFloaterTools->setStatusText("Click and drag to change view"); + } } // virtual void LLToolCamera::handleDeselect() { - if (gFloaterTools) gFloaterTools->setStatusText(""); + if (gFloaterTools) + { + gFloaterTools->setStatusText(""); + } // gAgent.setLookingAtAvatar(FALSE); } |