summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorybridge.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-06-12 23:00:34 +0300
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-06-12 23:01:57 +0300
commitbc67a7445cf8113708d94c5759a3509361a23e78 (patch)
tree99667e5089b3968f3c9b834187a22a6a56b072b9 /indra/newview/llinventorybridge.cpp
parent9eabffe430cd0c7b64f2cb796997dfd74a0cab82 (diff)
SL-19823 Fix active panel not existing
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
-rw-r--r--indra/newview/llinventorybridge.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp
index 3c1e58205a..8b439449c5 100644
--- a/indra/newview/llinventorybridge.cpp
+++ b/indra/newview/llinventorybridge.cpp
@@ -925,7 +925,7 @@ void LLInvFVBridge::getClipboardEntries(bool show_asset_id,
addDeleteContextMenuOptions(items, disabled_items);
}
- if (!isPanelActive("All Items") && !isPanelActive("single_folder_inv") && !isPanelActive("comb_single_folder_inv"))
+ if (!isPanelActive("All Items") && !isPanelActive("comb_single_folder_inv"))
{
items.push_back(std::string("Show in Main Panel"));
}
@@ -4419,7 +4419,7 @@ void LLFolderBridge::buildContextMenuFolderOptions(U32 flags, menuentry_vec_t&
{
items.push_back(std::string("open_in_new_window"));
items.push_back(std::string("Open Folder Separator"));
- if(isPanelActive("single_folder_inv"))
+ if(isPanelActive("comb_single_folder_inv"))
{
items.push_back(std::string("open_in_current_window"));
}