diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2023-02-20 18:37:18 +0200 |
---|---|---|
committer | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2023-02-20 18:37:18 +0200 |
commit | e45dce1b75bd04459d5e6839bee8bf8b93dd0a5b (patch) | |
tree | 7208f5558a49c5a4806fb80727b2b23b0a448698 | |
parent | 603053807cb0bb0026058c8b01decd042300bd93 (diff) |
mac build fix
-rw-r--r-- | indra/newview/llfloaterchangeitemthumbnail.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterchangeitemthumbnail.cpp b/indra/newview/llfloaterchangeitemthumbnail.cpp index 90fecd07ba..bd528f43dc 100644 --- a/indra/newview/llfloaterchangeitemthumbnail.cpp +++ b/indra/newview/llfloaterchangeitemthumbnail.cpp @@ -228,7 +228,7 @@ void LLFloaterChangeItemThumbnail::refreshFromItem(LLViewerInventoryItem* item) mThumbnailCtrl->setValue(thumbnail_id); mCopyToClipboardBtn->setEnabled(thumbnail_id.notNull()); - mRemoveImageBtn->setEnabled(thumbnail_id.notNull() && (item->getActualType() != LLAssetType::AT_TEXTURE) || (item->getAssetUUID() != thumbnail_id)); + mRemoveImageBtn->setEnabled(thumbnail_id.notNull() && ((item->getActualType() != LLAssetType::AT_TEXTURE) || (item->getAssetUUID() != thumbnail_id))); // todo: some elements might not support setting thumbnails // since they already have them |