MAINT-1333 FIXED Disable "for sale" controls for attached prim

master
Mnikolenko ProductEngine 2014-11-07 16:29:32 +02:00
parent 811878df66
commit 815cfa5060
1 changed files with 8 additions and 0 deletions

View File

@ -851,6 +851,14 @@ void LLPanelPermissions::refresh()
combo_click_action->setValue(LLSD(combo_value));
}
}
if(LLSelectMgr::getInstance()->getSelection()->isAttachment())
{
getChildView("checkbox for sale")->setEnabled(FALSE);
getChildView("Edit Cost")->setEnabled(FALSE);
getChild<LLComboBox>("sale type")->setEnabled(FALSE);
}
getChildView("label click action")->setEnabled(is_perm_modify && is_nonpermanent_enforced && all_volume);
getChildView("clickaction")->setEnabled(is_perm_modify && is_nonpermanent_enforced && all_volume);
}