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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-04-23 08:39:58 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-05-03 15:38:42 +0400
commit3c3759ac9e609aced3e751a50fc67462ae6dfc7a (patch)
tree72ee63c7f22ddd556f6353535fa802e4ebf2a360 /source/blender/makesrna/intern/rna_texture.c
parent308ec601b28c8f663d85f09010c95a2168fba134 (diff)
Added notifier of updates in Freestyle texture slots.
Diffstat (limited to 'source/blender/makesrna/intern/rna_texture.c')
-rw-r--r--source/blender/makesrna/intern/rna_texture.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_texture.c b/source/blender/makesrna/intern/rna_texture.c
index 0d327d6da0a..f098a659671 100644
--- a/source/blender/makesrna/intern/rna_texture.c
+++ b/source/blender/makesrna/intern/rna_texture.c
@@ -245,6 +245,9 @@ void rna_TextureSlot_update(Main *UNUSED(bmain), Scene *UNUSED(scene), PointerRN
case ID_BR:
WM_main_add_notifier(NC_BRUSH, id);
break;
+ case ID_LS:
+ WM_main_add_notifier(NC_LINESTYLE, id);
+ break;
case ID_PA:
{
MTex *mtex = ptr->data;