From bc0066668324300e51a56f5e62e7e906638d4a9f Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Tue, 4 Oct 2022 12:05:18 -0500 Subject: Fix: UI: Warning for description with period at end The last period is added automatically, for better or worse. --- source/blender/editors/space_image/image_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c index 4155e84c013..93e41589881 100644 --- a/source/blender/editors/space_image/image_ops.c +++ b/source/blender/editors/space_image/image_ops.c @@ -2055,7 +2055,7 @@ void IMAGE_OT_save_as(wmOperatorType *ot) "Save As Render", "Save image with render color management.\n" "For display image formats like PNG, apply view and display transform.\n" - "For intermediate image formats like OpenEXR, use the default render output color space."); + "For intermediate image formats like OpenEXR, use the default render output color space"); RNA_def_property_flag(prop, PROP_SKIP_SAVE); prop = RNA_def_boolean(ot->srna, "copy", -- cgit v1.2.3