[Bf-blender-cvs] [bc006666832] master: Fix: UI: Warning for description with period at end

Hans Goudey noreply at git.blender.org
Tue Oct 4 19:10:25 CEST 2022


Commit: bc0066668324300e51a56f5e62e7e906638d4a9f
Author: Hans Goudey
Date:   Tue Oct 4 12:05:18 2022 -0500
Branches: master
https://developer.blender.org/rBbc0066668324300e51a56f5e62e7e906638d4a9f

Fix: UI: Warning for description with period at end

The last period is added automatically, for better or worse.

===================================================================

M	source/blender/editors/space_image/image_ops.c

===================================================================

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",



More information about the Bf-blender-cvs mailing list