Skip to content
Snippets Groups Projects
Commit 3b9c7d34 authored by Vadim Savchuk's avatar Vadim Savchuk
Browse files

merge

--HG--
branch : product-engine
parents 1417bd39 57a211a2
No related branches found
No related tags found
No related merge requests found
...@@ -372,6 +372,11 @@ void LLCOFWearables::refresh() ...@@ -372,6 +372,11 @@ void LLCOFWearables::refresh()
iter != iter_end; ++iter) iter != iter_end; ++iter)
{ {
LLFlatListView* list = iter->first; LLFlatListView* list = iter->first;
if (!list) continue;
//restoring selection should not fire commit callbacks
list->setCommitOnSelectionChange(false);
const values_vector_t& values = iter->second; const values_vector_t& values = iter->second;
for (values_vector_t::const_iterator for (values_vector_t::const_iterator
value_it = values.begin(), value_it = values.begin(),
...@@ -385,6 +390,8 @@ void LLCOFWearables::refresh() ...@@ -385,6 +390,8 @@ void LLCOFWearables::refresh()
list->selectItemByValue(*value_it); list->selectItemByValue(*value_it);
} }
} }
list->setCommitOnSelectionChange(true);
} }
} }
......
...@@ -53,6 +53,8 @@ ...@@ -53,6 +53,8 @@
#include "lltooldraganddrop.h" #include "lltooldraganddrop.h"
#include "llviewermenu.h" #include "llviewermenu.h"
#include "llviewertexturelist.h" #include "llviewertexturelist.h"
#include "llsidepanelinventory.h"
#include "llsidetray.h"
const std::string FILTERS_FILENAME("filters.xml"); const std::string FILTERS_FILENAME("filters.xml");
...@@ -1163,6 +1165,12 @@ BOOL LLPanelMainInventory::isActionEnabled(const LLSD& userdata) ...@@ -1163,6 +1165,12 @@ BOOL LLPanelMainInventory::isActionEnabled(const LLSD& userdata)
return FALSE; return FALSE;
} }
if (command_name == "share")
{
LLSidepanelInventory* parent = dynamic_cast<LLSidepanelInventory*>(LLSideTray::getInstance()->getPanel("sidepanel_inventory"));
return parent ? parent->canShare() : FALSE;
}
return TRUE; return TRUE;
} }
......
...@@ -58,6 +58,9 @@ class LLSidepanelInventory : public LLPanel ...@@ -58,6 +58,9 @@ class LLSidepanelInventory : public LLPanel
void showTaskInfoPanel(); void showTaskInfoPanel();
void showInventoryPanel(); void showInventoryPanel();
// checks can share selected item(s)
bool canShare();
protected: protected:
// Tracks highlighted (selected) item in inventory panel. // Tracks highlighted (selected) item in inventory panel.
LLInventoryItem *getSelectedItem(); LLInventoryItem *getSelectedItem();
...@@ -65,8 +68,6 @@ class LLSidepanelInventory : public LLPanel ...@@ -65,8 +68,6 @@ class LLSidepanelInventory : public LLPanel
void onSelectionChange(const std::deque<LLFolderViewItem*> &items, BOOL user_action); void onSelectionChange(const std::deque<LLFolderViewItem*> &items, BOOL user_action);
// "wear", "teleport", etc. // "wear", "teleport", etc.
void performActionOnSelection(const std::string &action); void performActionOnSelection(const std::string &action);
bool canShare();
void updateVerbs(); void updateVerbs();
// //
......
...@@ -81,6 +81,17 @@ ...@@ -81,6 +81,17 @@
function="Inventory.GearDefault.Enable" function="Inventory.GearDefault.Enable"
parameter="save_texture" /> parameter="save_texture" />
</menu_item_call> </menu_item_call>
<menu_item_call
label="Share"
layout="topleft"
name="Share"
visible="true">
<on_click
function="Inventory.Share" />
<on_enable
function="Inventory.GearDefault.Enable"
parameter="share" />
</menu_item_call>
<menu_item_call <menu_item_call
label="Find Original" label="Find Original"
layout="topleft" layout="topleft"
......
...@@ -22,40 +22,40 @@ ...@@ -22,40 +22,40 @@
width="311"> width="311">
<accordion_tab <accordion_tab
layout="topleft" layout="topleft"
name="tab_attachments" name="tab_clothing"
title="Attachments"> title="Clothing">
<flat_list_view <flat_list_view
allow_select="true" allow_select="true"
follows="all" follows="all"
height="10" height="10"
item_pad="3" item_pad="3"
keep_selection_visible_on_reshape="true"
layout="topleft" layout="topleft"
left="0" left="0"
keep_selection_visible_on_reshape="true"
multi_select="true" multi_select="true"
name="list_attachments" name="list_clothing"
top="0" top="0"
width="311"> width="311" />
<flat_list_view.no_items_text
value="No attachments worn" />
</flat_list_view>
</accordion_tab> </accordion_tab>
<accordion_tab <accordion_tab
layout="topleft" layout="topleft"
name="tab_clothing" name="tab_attachments"
title="Clothing"> title="Attachments">
<flat_list_view <flat_list_view
allow_select="true" allow_select="true"
follows="all" follows="all"
height="10" height="10"
item_pad="3" item_pad="3"
keep_selection_visible_on_reshape="true"
layout="topleft" layout="topleft"
left="0" left="0"
keep_selection_visible_on_reshape="true"
multi_select="true" multi_select="true"
name="list_clothing" name="list_attachments"
top="0" top="0"
width="311" /> width="311">
<flat_list_view.no_items_text
value="No attachments worn" />
</flat_list_view>
</accordion_tab> </accordion_tab>
<accordion_tab <accordion_tab
layout="topleft" layout="topleft"
......
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