diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-08-13 16:32:28 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-08-13 16:32:28 +0200 |
commit | 0f67b3cc674377559e66c5a6729fd499049a992f (patch) | |
tree | db385afa84c09891e9a83c18b6e5436cf6e983ed /src/photos/PhotoMetadata.vala | |
parent | f8ca421bdacee8851965a4b802ada1d2366bdbc1 (diff) | |
parent | 6cee6189adf46287667c35707325dd0820ea9f33 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'src/photos/PhotoMetadata.vala')
-rw-r--r-- | src/photos/PhotoMetadata.vala | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/photos/PhotoMetadata.vala b/src/photos/PhotoMetadata.vala index 7764415..e9a9042 100644 --- a/src/photos/PhotoMetadata.vala +++ b/src/photos/PhotoMetadata.vala @@ -970,8 +970,13 @@ public class PhotoMetadata : MediaMetadata { public void set_comment(string? comment, SetOption option = SetOption.ALL_DOMAINS) { + /* https://bugzilla.gnome.org/show_bug.cgi?id=781897 - Do not strip + * newlines from comments */ if (!is_string_empty(comment)) - set_all_string(COMMENT_TAGS, comment, option); + set_all_generic(COMMENT_TAGS, option, (tag) => { + set_string(tag, comment, PREPARE_STRING_OPTIONS & + ~PrepareInputTextOptions.STRIP_CRLF); + }); else remove_tags(COMMENT_TAGS); } |