From e2342ab7547e04a17b47ebe740782507a60b7b16 Mon Sep 17 00:00:00 2001 From: Hecklezz Date: Mon, 17 Nov 2025 21:13:37 +1000 Subject: [PATCH] [FIRE-36101 & FIRE-36113] Fixed setting MOAP settings in texture panel and fixed Media Autoplay --- indra/newview/fspanelface.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/indra/newview/fspanelface.cpp b/indra/newview/fspanelface.cpp index 39becffb47..14dbca2fb0 100644 --- a/indra/newview/fspanelface.cpp +++ b/indra/newview/fspanelface.cpp @@ -4106,6 +4106,7 @@ void FSPanelFace::onCancelSpecularTexture() // onClickBtnAddMedia() where needed, so the naming is probably just old cruft -Zi void FSPanelFace::onClickBtnEditMedia() { + LLFloaterMediaSettings::getInstance(); // make sure floater we are about to open exists before refreshMedia refreshMedia(); LLFloaterReg::showInstance("media_settings"); } @@ -4124,6 +4125,7 @@ void FSPanelFace::onClickBtnAddMedia() // check if multiple faces are selected if (LLSelectMgr::getInstance()->getSelection()->isMultipleTESelected()) { + LLFloaterMediaSettings::getInstance(); // make sure floater we are about to open exists before refreshMedia refreshMedia(); LLNotificationsUtil::add("MultipleFacesSelected", LLSD(), LLSD(), boost::bind(&FSPanelFace::multipleFacesSelectedConfirm, this, _1, _2)); }