From 75e1187f3182e726e15ace55d38885a6385d4b33 Mon Sep 17 00:00:00 2001 From: Richard Nelson Date: Thu, 9 Jul 2009 01:07:03 +0000 Subject: EXT-126 - Grayed empty field appears after minimize the 'Search Second Life' dlg EXT-124 - Empty local chat window appears after the viewer was resized reviewed by Austin --- indra/llui/llfloater.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp index c8bbdb0a56..e0a4c08753 100644 --- a/indra/llui/llfloater.cpp +++ b/indra/llui/llfloater.cpp @@ -2177,7 +2177,8 @@ void LLFloaterView::adjustToFitScreen(LLFloater* floater, BOOL allow_partial_out // convert to local coordinate frame LLRect snap_rect_local = getLocalSnapRect(); - if( floater->isResizable() ) + // only automatically resize non-minimized, resizable floaters + if( floater->isResizable() && !floater->isMinimized() ) { LLRect view_rect = floater->getRect(); S32 old_width = view_rect.getWidth(); -- cgit v1.2.3