diff options
Diffstat (limited to 'linden/indra/newview/lltoolgrab.cpp')
-rw-r--r-- | linden/indra/newview/lltoolgrab.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/linden/indra/newview/lltoolgrab.cpp b/linden/indra/newview/lltoolgrab.cpp index b56e762..d6f1f0e 100644 --- a/linden/indra/newview/lltoolgrab.cpp +++ b/linden/indra/newview/lltoolgrab.cpp | |||
@@ -95,7 +95,11 @@ LLToolGrab::~LLToolGrab() | |||
95 | // virtual | 95 | // virtual |
96 | void LLToolGrab::handleSelect() | 96 | void LLToolGrab::handleSelect() |
97 | { | 97 | { |
98 | gFloaterTools->setStatusText("Drag to move objects, Ctrl to lift, Ctrl-Shift to spin"); | 98 | if(gFloaterTools) |
99 | { | ||
100 | // viewer can crash during startup if we don't check. | ||
101 | gFloaterTools->setStatusText("Drag to move objects, Ctrl to lift, Ctrl-Shift to spin"); | ||
102 | } | ||
99 | gGrabBtnVertical = FALSE; | 103 | gGrabBtnVertical = FALSE; |
100 | gGrabBtnSpin = FALSE; | 104 | gGrabBtnSpin = FALSE; |
101 | } | 105 | } |