plug-ins: fix tiff comment getting saved when save comment is unchecked.

This commit is contained in:
Jacob Boerema 2021-01-06 22:55:24 -05:00
parent f814ae7205
commit c7efae0cff
1 changed files with 3 additions and 1 deletions

View File

@ -320,6 +320,7 @@ save_layer (TIFF *tif,
gint offset_x, offset_y;
gint config_compression;
gchar *config_comment;
gboolean config_save_comment;
gboolean config_save_transp_pixels;
gboolean config_save_geotiff_tags;
gboolean config_save_profile;
@ -327,6 +328,7 @@ save_layer (TIFF *tif,
g_object_get (config,
"compression", &config_compression,
"gimp-comment", &config_comment,
"save-comment", &config_save_comment,
"save-transparent-pixels", &config_save_transp_pixels,
"save-geotiff", &config_save_geotiff_tags,
"save-color-profile", &config_save_profile,
@ -655,7 +657,7 @@ save_layer (TIFF *tif,
#endif
/* Set TIFF parameters. */
if (config_comment && *config_comment)
if (config_save_comment && config_comment && *config_comment)
{
const gchar *c = config_comment;
gint len;