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:
authorMatt Ebb <matt@mke3.net>2009-05-05 06:24:58 +0400
committerMatt Ebb <matt@mke3.net>2009-05-05 06:24:58 +0400
commit08df158672184a5459d517cc8841a66a92a07bce (patch)
treea2fbf1ad050c71345409cd1018d6bba809d25e11 /source/blender/editors/interface/interface_utils.c
parentb753d6fd2da339b0b80888036a1e3787501ebf77 (diff)
* More icon updates, thanks to Jendryzch. That's all the modifiers now, I think!
Diffstat (limited to 'source/blender/editors/interface/interface_utils.c')
-rw-r--r--source/blender/editors/interface/interface_utils.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/interface/interface_utils.c b/source/blender/editors/interface/interface_utils.c
index 8f3053f5312..dc346be7af2 100644
--- a/source/blender/editors/interface/interface_utils.c
+++ b/source/blender/editors/interface/interface_utils.c
@@ -235,6 +235,10 @@ int UI_GetIconRNA(PointerRNA *ptr)
return ICON_MOD_EXPLODE;
else if(rnatype == &RNA_CollisionModifier)
return ICON_MOD_PHYSICS;
+ else if(rnatype == &RNA_FluidSimulationModifier)
+ return ICON_MOD_FLUIDSIM;
+ else if(rnatype == &RNA_MultiresModifier)
+ return ICON_MOD_MULTIRES;
else
return ICON_DOT;
}