aboutsummaryrefslogtreecommitdiffstats
path: root/src/activitypub/apattachment.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/activitypub/apattachment.cpp')
-rw-r--r--src/activitypub/apattachment.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/activitypub/apattachment.cpp b/src/activitypub/apattachment.cpp
index b5c82ce..db305ba 100644
--- a/src/activitypub/apattachment.cpp
+++ b/src/activitypub/apattachment.cpp
@@ -30,7 +30,14 @@ QString APAttachment::get_html_render(HtmlRenderDetails info) {
}
const QPixmap& APAttachment::get_pixmap(int width, int height) {
- if (pixmap) return *pixmap;
+ // Recreating the pixmap if it doesn't have the requested dimensions is quite inefficent. So it's better for the callee to resize the image instead of relying on this function.
+ if (pixmap and pixmap_dimens.is_equal(width, height)) return *pixmap;
+ else if (pixmap)
+ delete pixmap;
+
+ // pixmap_dimens are correctly based on the requested/function argument width and height, and not the actual dimentions of the pixmap!
+ pixmap_dimens.height = height;
+ pixmap_dimens.width = width;
if (width > 0 or height > 0) {
QPixmap image(path_url);