Skip to content
Snippets Groups Projects
Commit 98f071aa authored by Leslie Linden's avatar Leslie Linden
Browse files

EXP-1790 FIX -- Hitting return on item in Merchant Outbox wears the object

* Disabled the "openItem" function on outbox items to prevent default behavior
  when the return button is pressed.
parent 0a1cb4f0
No related branches found
No related tags found
No related merge requests found
...@@ -148,4 +148,9 @@ BOOL LLOutboxFolderViewItem::handleDoubleClick(S32 x, S32 y, MASK mask) ...@@ -148,4 +148,9 @@ BOOL LLOutboxFolderViewItem::handleDoubleClick(S32 x, S32 y, MASK mask)
return TRUE; return TRUE;
} }
void LLOutboxFolderViewItem::openItem()
{
// Intentionally do nothing to block attaching items from the outbox
}
// eof // eof
...@@ -71,6 +71,7 @@ class LLOutboxFolderViewItem : public LLFolderViewItem ...@@ -71,6 +71,7 @@ class LLOutboxFolderViewItem : public LLFolderViewItem
// virtual // virtual
BOOL handleDoubleClick(S32 x, S32 y, MASK mask); BOOL handleDoubleClick(S32 x, S32 y, MASK mask);
void openItem();
}; };
......
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