diff options
author | Richard Linden <none@none> | 2011-10-24 17:30:27 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2011-10-24 17:30:27 -0700 |
commit | e356f5c0dce81aff113d562485721305d21ece77 (patch) | |
tree | b9e1f662beac5032255f8d933d1b39f0f959baa3 /indra/llui | |
parent | d3d92420d6fb925b02d2ccf47c4ecc644b8b4628 (diff) |
EXP-1456 FIX NEARBY CHAT window sometimes opens at the top of the screen.
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llfloater.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llfloater.cpp b/indra/llui/llfloater.cpp index 2c707afa8f..432397d3e9 100644 --- a/indra/llui/llfloater.cpp +++ b/indra/llui/llfloater.cpp @@ -1070,7 +1070,7 @@ void LLFloater::handleReshape(const LLRect& new_rect, bool by_user) const LLRect old_rect = getRect(); LLView::handleReshape(new_rect, by_user); - if (by_user) + if (by_user && !isMinimized()) { storeRectControl(); mOpenPositioning = LLFloaterEnums::OPEN_POSITIONING_NONE; |