From 42efd7cb2d3953c985ca026e09da7fc9d782638e Mon Sep 17 00:00:00 2001 From: Ansariel Date: Fri, 5 Sep 2014 12:39:42 +0200 Subject: [PATCH] FIRE-7530: Make sure, an un-minimized floater goes to the front --- indra/llui/llfloater.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp index 266d497bad..10e26b08a2 100755 --- a/indra/llui/llfloater.cpp +++ b/indra/llui/llfloater.cpp @@ -1399,6 +1399,9 @@ void LLFloater::setMinimized(BOOL minimize) // Reshape *after* setting mMinimized reshape( mExpandedRect.getWidth(), mExpandedRect.getHeight(), TRUE ); + + // FIRE-7530: Make sure, an un-minimized floater goes to the front + setFrontmost(); } make_ui_sound("UISndWindowClose");