From 630819cfe5b57b56803e9200eb242e78e9b64005 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Thu, 30 Jul 2015 21:20:19 -0400 Subject: [PATCH] Set visible and set frontmost. --- indra/newview/llinventorybridge.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index d528fee6c..8c21cdaba 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -329,7 +329,9 @@ void LLInvFVBridge::showProperties() LLFloater* floater_properties = LLFloaterProperties::find(mUUID, LLUUID::null); if (floater_properties) { - floater_properties->open()/*setVisibleAndFrontmost()*/; + floater_properties->setVisible(true); + floater_properties->setFrontmost(true); + //floater_properties->setVisibleAndFrontmost(); } } else