diff options
author | Steven Bennetts <steve@lindenlab.com> | 2007-03-02 21:25:50 +0000 |
---|---|---|
committer | Steven Bennetts <steve@lindenlab.com> | 2007-03-02 21:25:50 +0000 |
commit | 4dabd9c0472deb49573fdafef2fa413e59703f19 (patch) | |
tree | 06c680d6a2047e03838d6548bccd26c7baf9d652 /indra/newview/lltoolfocus.cpp | |
parent | d4462963c6ba5db2088723bbedc7b60f1184c594 (diff) |
merge release@58699 beta-1-14-0@58707 -> release
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); } |