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:
Diffstat (limited to 'source/blender/makesrna/intern/rna_texture.c')
-rw-r--r--source/blender/makesrna/intern/rna_texture.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_texture.c b/source/blender/makesrna/intern/rna_texture.c
index 37a0ee0da8e..b0e1ed04790 100644
--- a/source/blender/makesrna/intern/rna_texture.c
+++ b/source/blender/makesrna/intern/rna_texture.c
@@ -304,8 +304,9 @@ char *rna_TextureSlot_path(PointerRNA *ptr)
if (prop) {
int index = RNA_property_collection_lookup_index(&id_ptr, prop, ptr);
- if (index >= 0)
+ if (index != -1) {
return BLI_sprintfN("texture_slots[%d]", index);
+ }
}
}
}