From a13b266a8ba50d8f7e482d84fc59f79421dba036 Mon Sep 17 00:00:00 2001 From: Merov Linden Date: Mon, 1 Sep 2014 13:02:20 -0700 Subject: DD-184 : Make sure the Properties panel shows up for items in active listed listings --- indra/newview/llinventorybridge.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'indra') 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 { -- cgit v1.2.3