From: Alexander Stippich Date: Mon, 7 Jan 2019 20:44:50 +0000 (+0100) Subject: fix display of image orientation X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/8f051a391db543a05c00bc1323634a48d7e6444d fix display of image orientation Summary: The name of the orientation property for baloo/kfilemetadata was false, leading to an always empty image orientation field. Test Plan: Look at an image in Dolphin details view which has the exiv orientation tag set. Orientation column is not empty. Reviewers: #dolphin, ngraham Reviewed By: #dolphin, ngraham Subscribers: ngraham, kfm-devel Tags: #dolphin Differential Revision: https://phabricator.kde.org/D18008 --- diff --git a/src/kitemviews/private/kbaloorolesprovider.cpp b/src/kitemviews/private/kbaloorolesprovider.cpp index 0e9aef71e..41184e119 100644 --- a/src/kitemviews/private/kbaloorolesprovider.cpp +++ b/src/kitemviews/private/kbaloorolesprovider.cpp @@ -129,7 +129,7 @@ KBalooRolesProvider::KBalooRolesProvider() : { "width", "width" }, { "height", "height" }, { "imageDateTime", "imageDateTime"}, - { "nexif.orientation", "orientation", }, + { "imageOrientation", "orientation", }, { "artist", "artist" }, { "genre", "genre" }, { "album", "album" },