[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [44220] branches/soc-2008-mxcurioni/source /blender/makesrna/intern/rna_color.c: Fix for a color ramp not immediately updated during the manipulation of a color picker .

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Sat Feb 18 00:27:06 CET 2012


Revision: 44220
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=44220
Author:   kjym3
Date:     2012-02-17 23:27:04 +0000 (Fri, 17 Feb 2012)
Log Message:
-----------
Fix for a color ramp not immediately updated during the manipulation of a color picker.
This commit complements a similar fix in revision 44171.

Revision Links:
--------------
    http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=44171

Modified Paths:
--------------
    branches/soc-2008-mxcurioni/source/blender/makesrna/intern/rna_color.c

Modified: branches/soc-2008-mxcurioni/source/blender/makesrna/intern/rna_color.c
===================================================================
--- branches/soc-2008-mxcurioni/source/blender/makesrna/intern/rna_color.c	2012-02-17 22:14:17 UTC (rev 44219)
+++ branches/soc-2008-mxcurioni/source/blender/makesrna/intern/rna_color.c	2012-02-17 23:27:04 UTC (rev 44220)
@@ -293,6 +293,13 @@
 				WM_main_add_notifier(NC_TEXTURE, tex);
 			}
 				break;
+			case ID_LS:
+			{
+				FreestyleLineStyle *linestyle= ptr->id.data;
+
+				WM_main_add_notifier(NC_LINESTYLE, linestyle);
+			}
+				break;
 			default:
 				break;
 		}




More information about the Bf-blender-cvs mailing list