[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27565] trunk/blender/source/blender/ editors/space_image/image_ops.c: Fix: Incorrect alpha values were displayed when sampling a float image in the image editor ,

Matt Ebb matt at mke3.net
Tue Mar 16 23:19:44 CET 2010


Revision: 27565
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=27565
Author:   broken
Date:     2010-03-16 23:19:43 +0100 (Tue, 16 Mar 2010)

Log Message:
-----------
Fix: Incorrect alpha values were displayed when sampling a float image in the image editor, 
reported in IRC by kahr-alpha

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_image/image_ops.c

Modified: trunk/blender/source/blender/editors/space_image/image_ops.c
===================================================================
--- trunk/blender/source/blender/editors/space_image/image_ops.c	2010-03-16 21:09:53 UTC (rev 27564)
+++ trunk/blender/source/blender/editors/space_image/image_ops.c	2010-03-16 22:19:43 UTC (rev 27565)
@@ -1521,7 +1521,7 @@
 			info->colf[0]= fp[0];
 			info->colf[1]= fp[1];
 			info->colf[2]= fp[2];
-			info->colf[3]= fp[4];
+			info->colf[3]= fp[3];
 			info->colfp= info->colf;
 		}
 





More information about the Bf-blender-cvs mailing list