app: add undo_desc for converting the image to GIMP_PRECISION_HALF

This commit is contained in:
Michael Natterer
2012-04-27 10:46:24 +02:00
parent 89113fed51
commit 49ab0624f3

View File

@ -1116,6 +1116,10 @@ gimp_image_convert_precision (GimpImage *image,
undo_desc = C_("undo-type", "Convert Image to 16 bit unsigned integer");
break;
case GIMP_PRECISION_HALF:
undo_desc = C_("undo-type", "Convert Image to 16 bit float");
break;
case GIMP_PRECISION_FLOAT:
undo_desc = C_("undo-type", "Convert Image to 32 bit float");
break;