SL-20167: Grey out the clipboard when copying the material to clipboard is not allowed
parent
a44959c00a
commit
05c8ef3f3c
|
|
@ -1947,6 +1947,14 @@ bool LLMaterialEditor::canSaveObjectsMaterial()
|
|||
return can_use_objects_material(func, std::vector({PERM_COPY, PERM_MODIFY}), permissions, item_out);
|
||||
}
|
||||
|
||||
bool LLMaterialEditor::canClipboardObjectsMaterial()
|
||||
{
|
||||
LLSelectedTEGetMatData func(true);
|
||||
LLPermissions permissions;
|
||||
LLViewerInventoryItem* item_out;
|
||||
return can_use_objects_material(func, std::vector({PERM_COPY, PERM_MODIFY, PERM_TRANSFER}), permissions, item_out);
|
||||
}
|
||||
|
||||
void LLMaterialEditor::saveObjectsMaterialAs()
|
||||
{
|
||||
LLSelectedTEGetMatData func(true);
|
||||
|
|
|
|||
|
|
@ -115,6 +115,7 @@ class LLMaterialEditor : public LLPreview, public LLVOInventoryListener
|
|||
|
||||
static bool canModifyObjectsMaterial();
|
||||
static bool canSaveObjectsMaterial();
|
||||
static bool canClipboardObjectsMaterial();
|
||||
static void saveObjectsMaterialAs();
|
||||
static void onCopyObjectsMaterialAsMsgCallback(const LLSD& notification, const LLSD& response, const LLPermissions& permissions, const LLUUID& object_id, const LLUUID& item_id);
|
||||
static void onSaveObjectsMaterialAsMsgCallback(const LLSD& notification, const LLSD& response, const LLPermissions& permissions);
|
||||
|
|
|
|||
|
|
@ -1975,7 +1975,8 @@ void LLPanelFace::updateCopyTexButton()
|
|||
LLViewerObject* objectp = LLSelectMgr::getInstance()->getSelection()->getFirstObject();
|
||||
mMenuClipboardTexture->setEnabled(objectp && objectp->getPCode() == LL_PCODE_VOLUME && objectp->permModify()
|
||||
&& !objectp->isPermanentEnforced() && !objectp->isInventoryPending()
|
||||
&& (LLSelectMgr::getInstance()->getSelection()->getObjectCount() == 1));
|
||||
&& (LLSelectMgr::getInstance()->getSelection()->getObjectCount() == 1)
|
||||
&& LLMaterialEditor::canClipboardObjectsMaterial());
|
||||
std::string tooltip = (objectp && objectp->isInventoryPending()) ? LLTrans::getString("LoadingContents") : getString("paste_options");
|
||||
mMenuClipboardTexture->setToolTip(tooltip);
|
||||
}
|
||||
|
|
@ -4147,7 +4148,8 @@ void LLPanelFace::onCopyTexture()
|
|||
|| objectp->getPCode() != LL_PCODE_VOLUME
|
||||
|| !objectp->permModify()
|
||||
|| objectp->isPermanentEnforced()
|
||||
|| selected_count > 1)
|
||||
|| selected_count > 1
|
||||
|| !LLMaterialEditor::canClipboardObjectsMaterial())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue