forked from pool/kf6-ksvg
Compare commits
17 Commits
Author | SHA256 | Date | |
---|---|---|---|
31a81b420c | |||
51a7ce1607 | |||
|
0afeabf2f8 | ||
63f69cadbd | |||
|
dbc3b97178 | ||
7c90effb4d | |||
c928759481 | |||
7fa3f58569 | |||
|
79e9266118 | ||
22670eb6ce | |||
|
f99472969e | ||
c40f934600 | |||
|
05a4056ba0 | ||
9013ee7aa2 | |||
|
eabfb3c367 | ||
|
17fd3a3005 | ||
|
480b88c01f |
@@ -1,40 +0,0 @@
|
|||||||
From 74f9f9cbd226407f8cde08c5cd5a711444e2775d Mon Sep 17 00:00:00 2001
|
|
||||||
From: Marco Martin <notmart@gmail.com>
|
|
||||||
Date: Wed, 19 Jun 2024 09:11:56 +0000
|
|
||||||
Subject: [PATCH] Restore proper devicepixelratio when extracting from cache
|
|
||||||
|
|
||||||
like in base Svg, also in FrameSvg restore the proper devicepixelratio
|
|
||||||
when getting the image from the cache, as KImageCache doesn't save or
|
|
||||||
restore the information about it.
|
|
||||||
|
|
||||||
This fixes blur region mask sometimes wrong behind floating panels
|
|
||||||
|
|
||||||
BUG:488295
|
|
||||||
---
|
|
||||||
src/ksvg/framesvg.cpp | 6 ++++++
|
|
||||||
1 file changed, 6 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/src/ksvg/framesvg.cpp b/src/ksvg/framesvg.cpp
|
|
||||||
index c1d22b1a..3b094abd 100644
|
|
||||||
--- a/src/ksvg/framesvg.cpp
|
|
||||||
+++ b/src/ksvg/framesvg.cpp
|
|
||||||
@@ -524,10 +524,16 @@ void FrameSvgPrivate::generateBackground(const QSharedPointer<FrameData> &frame)
|
|
||||||
QPixmap overlay;
|
|
||||||
if (q->isUsingRenderingCache()) {
|
|
||||||
frameCached = q->imageSet()->d->findInCache(QString::number(id), frame->cachedBackground, frame->lastModified) && !frame->cachedBackground.isNull();
|
|
||||||
+ if (frameCached) {
|
|
||||||
+ frame->cachedBackground.setDevicePixelRatio(q->devicePixelRatio());
|
|
||||||
+ }
|
|
||||||
|
|
||||||
if (overlayAvailable) {
|
|
||||||
const size_t overlayId = qHash(cacheId(frame.data(), frame->prefix % QLatin1String("overlay")));
|
|
||||||
overlayCached = q->imageSet()->d->findInCache(QString::number(overlayId), overlay, frame->lastModified) && !overlay.isNull();
|
|
||||||
+ if (overlayCached) {
|
|
||||||
+ overlay.setDevicePixelRatio(q->devicePixelRatio());
|
|
||||||
+ }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
--
|
|
||||||
2.45.2
|
|
||||||
|
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0054ed0c094c605a712bc9f8c8cc61c7e0d3eefe1ee50a93912bbd60a6cb07d7
|
|
||||||
size 83208
|
|
@@ -1,7 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iHUEABYKAB0WIQSQqWisqEU3zCe5nq8sjfWHptSqwQUCZlnQdQAKCRAsjfWHptSq
|
|
||||||
waaUAQCgGrZLLc6/HHvEH/A7VO0kUdX97KMGucDdHUgfgc1cUAEA0K7/2gfNzx/s
|
|
||||||
cekokxaJSHnOnfkfEPYAZFA+rIie8gw=
|
|
||||||
=9E6E
|
|
||||||
-----END PGP SIGNATURE-----
|
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3391c74fc31526e7ff2659622d00e93b5cd8667397611d5676062e4b32d86530
|
|
||||||
size 83368
|
|
@@ -1,7 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iHUEABYKAB0WIQSQqWisqEU3zCe5nq8sjfWHptSqwQUCZohS3QAKCRAsjfWHptSq
|
|
||||||
wbbNAP9z5EG3cfdHQVUuWnl+UMHaFrZZK9Fm39BdTuzeHDwgZgD/eXbcuJ7If2LQ
|
|
||||||
RD0AvG1HWoR+CsoFYQ3KMj2AWEk4JQ0=
|
|
||||||
=BMp2
|
|
||||||
-----END PGP SIGNATURE-----
|
|
Reference in New Issue
Block a user