We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c267497 commit c8f1890Copy full SHA for c8f1890
indra/newview/llpanelpeoplemenus.cpp
@@ -154,11 +154,15 @@ void PeopleContextMenu::buildContextMenu(class LLMenuGL& menu, U32 flags)
154
155
bool PeopleContextMenu::enableContextMenuItem(const LLSD& userdata)
156
{
157
+ std::string item = userdata.asString();
158
if(gAgent.getID() == mUUIDs.front())
159
160
+ if (item == std::string("can_zoom_in"))
161
+ {
162
+ return true;
163
+ }
164
return false;
165
}
- std::string item = userdata.asString();
166
167
// Note: can_block and can_delete is used only for one person selected menu
168
// so we don't need to go over all uuids.
0 commit comments