Skip to content
Snippets Groups Projects
Commit 31cc47f9 authored by Mnikolenko ProductEngine's avatar Mnikolenko ProductEngine
Browse files

MAINT-3593 FIXED Clear previous selection properly when selecting new item in...

MAINT-3593 FIXED Clear previous selection properly when selecting new item in another panel(Inventory/Inbox).
parent 31c9be17
No related branches found
No related tags found
No related merge requests found
...@@ -710,13 +710,13 @@ void LLSidepanelInventory::clearSelections(bool clearMain, bool clearInbox) ...@@ -710,13 +710,13 @@ void LLSidepanelInventory::clearSelections(bool clearMain, bool clearInbox)
if (inv_panel) if (inv_panel)
{ {
inv_panel->clearSelection(); inv_panel->getRootFolder()->clearSelection();
} }
} }
if (clearInbox && mInboxEnabled && (mInventoryPanelInbox != NULL)) if (clearInbox && mInboxEnabled && (mInventoryPanelInbox != NULL))
{ {
mInventoryPanelInbox->clearSelection(); mInventoryPanelInbox->getRootFolder()->clearSelection();
} }
updateVerbs(); updateVerbs();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment