diff options
author | Richard Linden <none@none> | 2011-10-24 14:28:09 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2011-10-24 14:28:09 -0700 |
commit | 399de4f345eb0bf43e84bf0a65b3251798f59a13 (patch) | |
tree | 52470bc9fed67ae2b80987cdebffcba0eb1a21d3 /indra/llui | |
parent | 08ee54158fe71feebaa11ebade18d45be4caf90b (diff) |
EXP-1454 FIX People floater 'cascades' as if opening a new window while looking at group profiles
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 7100ea13a7..2c707afa8f 100644 --- a/indra/llui/llfloater.cpp +++ b/indra/llui/llfloater.cpp @@ -935,7 +935,7 @@ void LLFloater::applyPositioning(LLFloater* other) case LLFloaterEnums::OPEN_POSITIONING_CASCADE_GROUP: case LLFloaterEnums::OPEN_POSITIONING_CASCADING: - if (other != NULL) + if (other != NULL && other != this) { stackWith(*other); } |