Fix: Incorrect alpha values were displayed when sampling a float image in the image editor,

reported in IRC by kahr-alpha
This commit is contained in:
Matt Ebb 2010-03-16 22:19:43 +00:00
parent 14e29a62dc
commit b3e48fed5d

@ -1521,7 +1521,7 @@ static void sample_apply(bContext *C, wmOperator *op, wmEvent *event)
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;
}