diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-07-26 13:27:16 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-07-26 14:04:52 +0200 |
commit | befda3cc73a9de3fe71fd67bf806c5213eceeabc (patch) | |
tree | 842bc0d37a8e4e859910f9415238d3e6c4dacbc8 /kde-frameworks/kio/files | |
parent | kde-frameworks/kirigami: Fix ScrollBar binding loop causing freezes (diff) | |
download | gentoo-befda3cc73a9de3fe71fd67bf806c5213eceeabc.tar.gz gentoo-befda3cc73a9de3fe71fd67bf806c5213eceeabc.tar.bz2 gentoo-befda3cc73a9de3fe71fd67bf806c5213eceeabc.zip |
kde-frameworks/kio: Fix RAW file image preview
Upstream commit 5002a07e71ff270a8717911b965a75c33993f883
KDE-bug: https://bugs.kde.org/show_bug.cgi?id=453480
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/kio/files')
-rw-r--r-- | kde-frameworks/kio/files/kio-5.96.0-fix-RAW-file-image-preview.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/kde-frameworks/kio/files/kio-5.96.0-fix-RAW-file-image-preview.patch b/kde-frameworks/kio/files/kio-5.96.0-fix-RAW-file-image-preview.patch new file mode 100644 index 000000000000..12d4a4c05f2d --- /dev/null +++ b/kde-frameworks/kio/files/kio-5.96.0-fix-RAW-file-image-preview.patch @@ -0,0 +1,37 @@ +From 5002a07e71ff270a8717911b965a75c33993f883 Mon Sep 17 00:00:00 2001 +From: Alexander Lohnau <alexander.lohnau@gmx.de> +Date: Fri, 8 Jul 2022 11:00:42 +0200 +Subject: [PATCH] Fix thumbnailer result for parent mime types being + overwritten + +BUG: 453480 +--- + src/widgets/previewjob.cpp | 12 +++++++----- + 1 file changed, 7 insertions(+), 5 deletions(-) + +diff --git a/src/widgets/previewjob.cpp b/src/widgets/previewjob.cpp +index c53bcc88a..91be5575e 100644 +--- a/src/widgets/previewjob.cpp ++++ b/src/widgets/previewjob.cpp +@@ -384,11 +384,13 @@ void PreviewJobPrivate::startPreview() + } + } + +- // Check the wildcards last, see BUG 453480 +- QString groupMimeType = mimeType; +- static const QRegularExpression expr(QStringLiteral("/.*")); +- groupMimeType.replace(expr, QStringLiteral("/*")); +- pluginIt = mimeMap.constFind(groupMimeType); ++ if (pluginIt == mimeMap.constEnd()) { ++ // Check the wildcards last, see BUG 453480 ++ QString groupMimeType = mimeType; ++ static const QRegularExpression expr(QStringLiteral("/.*")); ++ groupMimeType.replace(expr, QStringLiteral("/*")); ++ pluginIt = mimeMap.constFind(groupMimeType); ++ } + } + + if (pluginIt != mimeMap.constEnd()) { +-- +GitLab + |