FIRE-36089 Connect bottom gear menu button to the gear menu, in Wearing tab, in Outfits window

Signed-off-by: PanteraPolnocy <panterapolnocy@gmail.com>
master
PanteraPolnocy 2025-11-16 03:01:24 +01:00
parent 115aca2a4f
commit 11c76817cb
1 changed files with 8 additions and 0 deletions

View File

@ -305,6 +305,14 @@ bool LLPanelWearing::postBuild()
// <FS:Ansariel> Show avatar complexity in appearance floater
mAvatarComplexityLabel = getChild<LLTextBox>("avatar_complexity_label");
// <FS:PP> FIRE-36089: Connect bottom gear menu button to the gear menu
LLMenuButton* gear_btn = findChild<LLMenuButton>("options_gear_btn");
if (gear_btn)
{
gear_btn->setMenu(mGearMenu->getMenu());
}
// </FS:PP>
return true;
}