summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelobjectinventory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llpanelobjectinventory.cpp')
-rw-r--r--indra/newview/llpanelobjectinventory.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/indra/newview/llpanelobjectinventory.cpp b/indra/newview/llpanelobjectinventory.cpp
index d27ce81e4f..fc1f70ed73 100644
--- a/indra/newview/llpanelobjectinventory.cpp
+++ b/indra/newview/llpanelobjectinventory.cpp
@@ -897,9 +897,21 @@ public:
const std::string& name) :
LLTaskInvFVBridge(panel, uuid, name) {}
+ LLUIImagePtr getIcon() const override;
+
//static bool enableIfCopyable( void* userdata );
};
+// virtual
+LLUIImagePtr LLTaskScriptBridge::getIcon() const
+{
+ // Pass the item's flags so the script subtype (e.g. SST_LUA) is honored
+ // and the correct icon (Inv_Script vs Inv_Script_Luau) is selected.
+ LLInventoryItem* item = findItem();
+ U32 misc_flag = item ? item->getFlags() : 0;
+ return LLInventoryIcon::getIcon(mAssetType, mInventoryType, misc_flag, false);
+}
+
class LLTaskLSLBridge : public LLTaskScriptBridge
{
public: