diff options
author | Merov Linden <merov@lindenlab.com> | 2014-09-01 13:02:20 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2014-09-01 13:02:20 -0700 |
commit | a13b266a8ba50d8f7e482d84fc59f79421dba036 (patch) | |
tree | bf35cbec2702f5f639d451cdf2c76e5674115729 /indra/newview/llinventorybridge.cpp | |
parent | 3188285cb1748b8832c0488923f0e7c79da564e0 (diff) |
DD-184 : Make sure the Properties panel shows up for items in active listed listings
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
-rwxr-xr-x | indra/newview/llinventorybridge.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 76cd300181..0692d425fc 100755 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -324,7 +324,13 @@ void LLInvFVBridge::showProperties() { if (isMarketplaceListingsFolder()) { - LLFloaterReg::showInstance("item_properties", LLSD().with("id",mUUID)); + LLFloaterReg::showInstance("item_properties", LLSD().with("id",mUUID),TRUE); + // Force it to show on top as this floater has a tendency to hide when confirmation dialog shows up + LLFloater* floater_properties = LLFloaterReg::findInstance("item_properties", LLSD().with("id",mUUID)); + if (floater_properties) + { + floater_properties->setVisibleAndFrontmost(); + } } else { |