diff options
author | Richard Nelson <none@none> | 2010-06-25 10:37:08 -0700 |
---|---|---|
committer | Richard Nelson <none@none> | 2010-06-25 10:37:08 -0700 |
commit | 742c1238790a5219864bac617a95065e827adda3 (patch) | |
tree | fbd30eea2a93b9c34c54bbb8e02c3d1ed98c594b /indra | |
parent | abb607a65e8a3f9328a0ce97fa5d3d08a75338ef (diff) |
EXT-8071 FIX Viewer crashes in login screen when moving mousewheel in login fields.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llagentcamera.h | 1 | ||||
-rw-r--r-- | indra/newview/llviewerwindow.cpp | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llagentcamera.h b/indra/newview/llagentcamera.h index 3b8f88733a..fc78fef6d0 100644 --- a/indra/newview/llagentcamera.h +++ b/indra/newview/llagentcamera.h @@ -82,6 +82,7 @@ public: void init(); void cleanup(); void setAvatarObject(LLVOAvatarSelf* avatar); + bool isInitialized() { return mInitialized; } private: bool mInitialized; diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp index c9c0b72528..6346ac320b 100644 --- a/indra/newview/llviewerwindow.cpp +++ b/indra/newview/llviewerwindow.cpp @@ -2329,7 +2329,9 @@ void LLViewerWindow::handleScrollWheel(S32 clicks) // Zoom the camera in and out behavior - if(top_ctrl == 0 && getWorldViewRectScaled().pointInRect(mCurrentMousePoint.mX, mCurrentMousePoint.mY) ) + if(top_ctrl == 0 + && getWorldViewRectScaled().pointInRect(mCurrentMousePoint.mX, mCurrentMousePoint.mY) + && gAgentCamera.isInitialized()) gAgentCamera.handleScrollWheel(clicks); return; |