From 6f5d67fd1fce10d4bd88201aebcf3132888c13fc Mon Sep 17 00:00:00 2001 From: PanteraPolnocy Date: Sat, 4 Oct 2025 19:11:31 +0200 Subject: [PATCH] FIRE-35947 Hide the new 'options' and 'trash' icons at the top of outfits window Currently they do not work, at all - Firestorm uses context menus and icons at the bottom of the panel anyway Change can be reverted when they get some proper usage, right now they're a bit misleading --- indra/newview/llpaneloutfitsinventory.cpp | 5 ++++- indra/newview/llsidepanelappearance.cpp | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/indra/newview/llpaneloutfitsinventory.cpp b/indra/newview/llpaneloutfitsinventory.cpp index b6ae97e834..26a8aa8eea 100644 --- a/indra/newview/llpaneloutfitsinventory.cpp +++ b/indra/newview/llpaneloutfitsinventory.cpp @@ -429,7 +429,10 @@ void LLPanelOutfitsInventory::onTabChange() } if (mTrashMenuPanel) { - mTrashMenuPanel->setVisible(mActivePanel->getTrashMenuVisible()); + // FIRE-35947 Ensure the top menu buttons (gear/sort/trash) are only visible in the outfits panel + // mTrashMenuPanel->setVisible(mActivePanel->getTrashMenuVisible()); + mTrashMenuPanel->setVisible(false); + // } updateVerbs(); diff --git a/indra/newview/llsidepanelappearance.cpp b/indra/newview/llsidepanelappearance.cpp index 5aa420ff5c..5386766379 100644 --- a/indra/newview/llsidepanelappearance.cpp +++ b/indra/newview/llsidepanelappearance.cpp @@ -366,9 +366,9 @@ void LLSidepanelAppearance::toggleMyOutfitsPanel(bool visible, const std::string mCurrOutfitPanel->setVisible(visible); // FIRE-35947 Ensure the top menu buttons (gear/sort/trash) are only visible in the outfits panel - getChildView("options_gear_btn_panel")->setVisible(visible); + getChildView("options_gear_btn_panel")->setVisible(false); getChildView("options_sort_btn_panel")->setVisible(visible); - getChildView("trash_btn_panel")->setVisible(visible); + getChildView("trash_btn_panel")->setVisible(false); // if (visible)