summaryrefslogtreecommitdiffstats
path: root/src/gvcore/filethumbnailviewitem.cpp
diff options
context:
space:
mode:
authorAlexander Golubev <fatzer2@gmail.com>2024-02-17 22:29:31 +0300
committerAlexander Golubev <fatzer2@gmail.com>2024-02-17 22:36:27 +0300
commitd4548234b93404404e8807ac6fe5c671faad68f2 (patch)
tree1602ceaabc07e31cc988c5e39e962e14c8aae055 /src/gvcore/filethumbnailviewitem.cpp
parent8c522cac3456c10c5937c98bb6866323639aff51 (diff)
downloadgwenview-d4548234b93404404e8807ac6fe5c671faad68f2.tar.gz
gwenview-d4548234b93404404e8807ac6fe5c671faad68f2.zip
Various small improvements
- fix some warnings about struct/class deslaration/definition mismatch - fix incorrect assert in jpegcontent.cpp - add a note - null a pointer after deleting a job Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
Diffstat (limited to 'src/gvcore/filethumbnailviewitem.cpp')
-rw-r--r--src/gvcore/filethumbnailviewitem.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gvcore/filethumbnailviewitem.cpp b/src/gvcore/filethumbnailviewitem.cpp
index dae4172..d017140 100644
--- a/src/gvcore/filethumbnailviewitem.cpp
+++ b/src/gvcore/filethumbnailviewitem.cpp
@@ -283,8 +283,11 @@ void FileThumbnailViewItem::calcRect(const TQString&) {
itemTextRect.moveLeft(PADDING);
itemTextRect.moveTop(thumbnailSize + PADDING * 2);
}
-
+
// Update rects
+ // NOTE: this results in 3 calls to TQIconViewContainer(), which is costly if
+ // there are a lot (tens of thousands) of items, unfortunately there
+ // is no way to workaround this in current (14.1.1, 2024) TQt API
if ( itemPixmapRect != pixmapRect() ) {
setPixmapRect( itemPixmapRect );
}