diff options
author | angela <angela@lindenlab.com> | 2009-11-04 15:58:49 +0800 |
---|---|---|
committer | angela <angela@lindenlab.com> | 2009-11-04 15:58:49 +0800 |
commit | bf092de246b26c3bf085b1ff22a7200594016063 (patch) | |
tree | 9578e653ed46d667b300228b3743eb867a7d1d82 | |
parent | 57703de35132216347f4b02fa8cb29a3c17efe8f (diff) |
EXT-1781 selecting Freeze frame (fullscreen preview) in the snapshot tool locks out mouse-clicks when closed
-rw-r--r-- | indra/newview/llfloatersnapshot.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llfloatersnapshot.cpp b/indra/newview/llfloatersnapshot.cpp index 235e819218..68dcdba852 100644 --- a/indra/newview/llfloatersnapshot.cpp +++ b/indra/newview/llfloatersnapshot.cpp @@ -1373,8 +1373,10 @@ void LLFloaterSnapshot::Impl::checkAutoSnapshot(LLSnapshotLivePreview* previewp, void LLFloaterSnapshot::Impl::onClickDiscard(void* data) { LLFloaterSnapshot *view = (LLFloaterSnapshot *)data; + if (view) { + view->getParent()->setMouseOpaque(FALSE); view->closeFloater(); } } |