From 0735380c60bb789aa8c1073699df8e473b083534 Mon Sep 17 00:00:00 2001
From: Mnikolenko ProductEngine <mnikolenko@productengine.com>
Date: Fri, 28 Aug 2015 11:26:39 +0300
Subject: [PATCH] MAINT-5548 FIXED Don't update snapshot when resizing Viewer
 if snapshot floater is closed.

---
 indra/newview/llsnapshotlivepreview.cpp | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/indra/newview/llsnapshotlivepreview.cpp b/indra/newview/llsnapshotlivepreview.cpp
index 6af9d61a540..8561a89ae57 100644
--- a/indra/newview/llsnapshotlivepreview.cpp
+++ b/indra/newview/llsnapshotlivepreview.cpp
@@ -463,7 +463,10 @@ void LLSnapshotLivePreview::reshape(S32 width, S32 height, BOOL called_from_pare
 	if (old_rect.getWidth() != width || old_rect.getHeight() != height)
 	{
 		LL_DEBUGS() << "window reshaped, updating thumbnail" << LL_ENDL;
-		updateSnapshot(TRUE);
+		if (mViewContainer && mViewContainer->isInVisibleChain())
+		{
+			updateSnapshot(TRUE);
+		}
 	}
 }
 
-- 
GitLab