Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Eisel <julian@blender.org>2020-12-21 15:30:40 +0300
committerJulian Eisel <julian@blender.org>2020-12-21 15:33:48 +0300
commitd2239b685c5660530822d8c75070208156f7e4c1 (patch)
tree41a8d67e7c5b73dc066421090c6a267eadc36231 /source/blender/editors
parent626a9aae6d140badb1910bdb18ac0ab6c199a701 (diff)
UI: Use better icon for identifying assets
Use the `ASSET_MANAGER` icon which is more appropriate than the current one which was just an unused icon that seemed sorta fitting, but was only meant to be temporary. The `ASSET_MANAGER` icon is already used for the Asset Browser, so it's being reused which we normally avoid. So we may still want to create a dedicated one, maybe a variation of this one.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/interface/interface_icons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_icons.c b/source/blender/editors/interface/interface_icons.c
index 899f4a6ddb1..1a214d6a899 100644
--- a/source/blender/editors/interface/interface_icons.c
+++ b/source/blender/editors/interface/interface_icons.c
@@ -2200,7 +2200,7 @@ int UI_icon_from_library(const ID *id)
return ICON_LIBRARY_DATA_OVERRIDE;
}
if (ID_IS_ASSET(id)) {
- return ICON_MAT_SPHERE_SKY;
+ return ICON_ASSET_MANAGER;
}
return ICON_NONE;