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 /indra/newview/llfloaterimcontainer.cpp | |
parent | ca069b5b4f28d465f6ff31499cfdb3aaeda618bc (diff) |
#4473 Enable Zoom in to Self menu option in chat
Diffstat (limited to 'indra/newview/llfloaterimcontainer.cpp')
-rw-r--r-- | indra/newview/llfloaterimcontainer.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
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); |