From 11c76817cb6b7d2d09fcc21c83453946bed38547 Mon Sep 17 00:00:00 2001 From: PanteraPolnocy Date: Sun, 16 Nov 2025 03:01:24 +0100 Subject: [PATCH] FIRE-36089 Connect bottom gear menu button to the gear menu, in Wearing tab, in Outfits window Signed-off-by: PanteraPolnocy --- indra/newview/llpanelwearing.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/indra/newview/llpanelwearing.cpp b/indra/newview/llpanelwearing.cpp index 8001c4c6e0..86ffc84054 100644 --- a/indra/newview/llpanelwearing.cpp +++ b/indra/newview/llpanelwearing.cpp @@ -305,6 +305,14 @@ bool LLPanelWearing::postBuild() // Show avatar complexity in appearance floater mAvatarComplexityLabel = getChild("avatar_complexity_label"); + // FIRE-36089: Connect bottom gear menu button to the gear menu + LLMenuButton* gear_btn = findChild("options_gear_btn"); + if (gear_btn) + { + gear_btn->setMenu(mGearMenu->getMenu()); + } + // + return true; }