summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authormaxim_productengine <mnikolenko@productengine.com>2018-08-02 16:35:14 +0300
committermaxim_productengine <mnikolenko@productengine.com>2018-08-02 16:35:14 +0300
commit6e3627aa641b60d041fedf36803d260abc7ca651 (patch)
treea1d2d6856933b2b022363b7eb5bfca1e50aadc82 /indra
parent344d02af4fd568e5a55e1ed0a1a935fb4718d364 (diff)
MAINT-8936 FIXED "Share" checkbox becomes gray in some inappropriate cases
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llsidepaneliteminfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llsidepaneliteminfo.cpp b/indra/newview/llsidepaneliteminfo.cpp
index a486a29aa2..2503e2a5e2 100644
--- a/indra/newview/llsidepaneliteminfo.cpp
+++ b/indra/newview/llsidepaneliteminfo.cpp
@@ -613,7 +613,7 @@ void LLSidepanelItemInfo::refreshFromItem(LLViewerInventoryItem* item)
LLCheckBoxCtrl* ctl = getChild<LLCheckBoxCtrl>("CheckShareWithGroup");
if(ctl)
{
- ctl->setTentative(TRUE);
+ ctl->setTentative(!ctl->getEnabled());
ctl->set(TRUE);
}
}