From d05805e7684104656c55d259c47e54135457b60b Mon Sep 17 00:00:00 2001 From: Tobias Ellinghaus Date: Thu, 21 Apr 2016 21:28:44 +0200 Subject: [PATCH] No caps for "darktable" in EXR comment --- src/imageio/format/exr.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imageio/format/exr.cc b/src/imageio/format/exr.cc index 7afd376c7e33..b8184c5c19fc 100644 --- a/src/imageio/format/exr.cc +++ b/src/imageio/format/exr.cc @@ -114,7 +114,7 @@ int write_image(dt_imageio_module_data_t *tmp, const char *filename, const void Imf::Header header(exr->width, exr->height, 1, Imath::V2f(0, 0), 1, Imf::INCREASING_Y, (Imf::Compression)exr->compression); - header.insert("comment", Imf::StringAttribute("Developed using Darktable " PACKAGE_VERSION)); + header.insert("comment", Imf::StringAttribute("Developed using darktable " PACKAGE_VERSION)); header.insert("exif", Imf::BlobAttribute(exif_blob));