diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-02-09 01:31:05 +0200 |
|---|---|---|
| committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-02-10 00:27:28 +0200 |
| commit | c8ee05a2712e56a7cdcb2b9e25c8b092c088d4d4 (patch) | |
| tree | 1916e205a9c2d975b5012eeec3b989de9638fba6 /indra/newview/llconversationloglist.cpp | |
| parent | 67876e6cb01871201048955868151971883aeaf4 (diff) | |
Triage Issue #49 Better inspection of media urls
Part 1: Ability to copy urls from nearby media for inspection
Diffstat (limited to 'indra/newview/llconversationloglist.cpp')
| -rw-r--r-- | indra/newview/llconversationloglist.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/indra/newview/llconversationloglist.cpp b/indra/newview/llconversationloglist.cpp index 97b16a5e93..e6ebfc2f1b 100644 --- a/indra/newview/llconversationloglist.cpp +++ b/indra/newview/llconversationloglist.cpp @@ -91,12 +91,12 @@ BOOL LLConversationLogList::handleRightMouseDown(S32 x, S32 y, MASK mask) BOOL handled = LLUICtrl::handleRightMouseDown(x, y, mask); LLToggleableMenu* context_menu = mContextMenu.get(); - { - context_menu->buildDrawLabels(); - if (context_menu && size()) - context_menu->updateParent(LLMenuGL::sMenuContainer); - LLMenuGL::showPopup(this, context_menu, x, y); - } + if (context_menu && size()) + { + context_menu->buildDrawLabels(); + context_menu->updateParent(LLMenuGL::sMenuContainer); + LLMenuGL::showPopup(this, context_menu, x, y); + } return handled; } |
