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:
authorCampbell Barton <ideasman42@gmail.com>2015-03-19 22:07:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-03-19 22:08:38 +0300
commit81472aff2be5a8059e046436b4d1810659032716 (patch)
treefeb17572be55e29d82af3c67eca7f76a6f605623 /source/blender/makesrna/intern/rna_palette.c
parenteee538f0d262a430cc622bfe17eef7dba9b251c7 (diff)
Remove deleted list for palette colors
was used because of UI memory access only.
Diffstat (limited to 'source/blender/makesrna/intern/rna_palette.c')
-rw-r--r--source/blender/makesrna/intern/rna_palette.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_palette.c b/source/blender/makesrna/intern/rna_palette.c
index 7405df967a0..8cbb57fde2c 100644
--- a/source/blender/makesrna/intern/rna_palette.c
+++ b/source/blender/makesrna/intern/rna_palette.c
@@ -55,7 +55,7 @@ static void rna_Palette_color_remove(Palette *palette, ReportList *reports, Poin
return;
}
- BKE_palette_color_remove_ex(palette, color, true);
+ BKE_palette_color_remove(palette, color);
RNA_POINTER_INVALIDATE(color_ptr);
}