From 94cf62f5106ef975ec085cd2000df1c12820dca4 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Wed, 10 Jul 2019 03:33:05 -0400 Subject: [PATCH] Fix issue of Enter not reliably opening items --- indra/newview/llfolderviewitem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llfolderviewitem.cpp b/indra/newview/llfolderviewitem.cpp index dab9a1a95..3d1180406 100644 --- a/indra/newview/llfolderviewitem.cpp +++ b/indra/newview/llfolderviewitem.cpp @@ -585,7 +585,7 @@ void LLFolderViewItem::buildContextMenu(LLMenuGL& menu, U32 flags) void LLFolderViewItem::openItem( void ) { if (!mListener) return; - if (mAllowWear || mListener->isItemWearable()) + //if (mAllowWear || mListener->isItemWearable()) // Singu Note: This will do nothing if can't do anything, so just call it { mListener->openItem(); }