diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2025-08-12 19:52:23 +0300 | 
|---|---|---|
| committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-08-12 20:31:00 +0300 | 
| commit | 1bcdf6824ce74360b27e0ad0bc307c72171cf653 (patch) | |
| tree | b98e5cbc277abbbdad35b9dd02c035376935bc15 | |
| parent | ca069b5b4f28d465f6ff31499cfdb3aaeda618bc (diff) | |
#4473 Enable Zoom in to Self menu option in chat
| -rw-r--r-- | indra/newview/llchathistory.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llfloaterimcontainer.cpp | 4 | 
2 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp index a48e22bc73..a966253c2c 100644 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -936,7 +936,7 @@ protected:                  menu->setItemEnabled("Voice Call", false);                  menu->setItemEnabled("Chat History", false);                  menu->setItemEnabled("Invite Group", false); -                menu->setItemEnabled("Zoom In", false); +                menu->setItemEnabled("Zoom In", true);                  menu->setItemEnabled("Share", false);                  menu->setItemEnabled("Pay", false);                  menu->setItemEnabled("Block Unblock", false); diff --git a/indra/newview/llfloaterimcontainer.cpp b/indra/newview/llfloaterimcontainer.cpp index 4312c058a1..d821d9a4a5 100644 --- a/indra/newview/llfloaterimcontainer.cpp +++ b/indra/newview/llfloaterimcontainer.cpp @@ -1540,6 +1540,10 @@ bool LLFloaterIMContainer::enableContextMenuItem(const std::string& item, uuid_v      // Beyond that point, if only the user agent is selected, everything is disabled      if (is_single_select && (single_id == gAgentID))      { +        if ("can_zoom_in" == item) +        { +            return true; +        }          if (is_moderator_option)          {              return enableModerateContextMenuItem(item, true);  | 
