summaryrefslogtreecommitdiffstats
path: root/src/gvcore/filedetailview.h
diff options
context:
space:
mode:
authorAlexander Golubev <[email protected]>2024-02-20 20:33:48 +0300
committerMichele Calgaro <[email protected]>2024-02-22 18:29:31 +0900
commitdb4080c1832fa8085e5737e6148baee7d8c3c00e (patch)
treeef9b1a76769b5b0686b3bb3e5e17ed980280747e /src/gvcore/filedetailview.h
parenta5931c83bdad1b1d137cf30f5c9cf59bf3e4c8cd (diff)
downloadgwenview-db4080c1832fa8085e5737e6148baee7d8c3c00e.tar.gz
gwenview-db4080c1832fa8085e5737e6148baee7d8c3c00e.zip
Avoid sorting items and creating thumbnails when loading metadata
Otherwice it has a big performance impact: it causes lots of thumbnail reloads and resorts of FileThumbnailView. Signed-off-by: Alexander Golubev <[email protected]> (cherry picked from commit 53ce37eeca12badf89ebde563a8ec335e0236a02)
Diffstat (limited to 'src/gvcore/filedetailview.h')
-rw-r--r--src/gvcore/filedetailview.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gvcore/filedetailview.h b/src/gvcore/filedetailview.h
index b0eafac..aced4ba 100644
--- a/src/gvcore/filedetailview.h
+++ b/src/gvcore/filedetailview.h
@@ -55,7 +55,8 @@ public:
virtual void clearView();
virtual void updateView( bool );
- virtual void updateView(const KFileItem*);
+ using FileViewBase::updateView;
+ virtual void updateView(const KFileItem*, bool metaInfoOnly);
virtual void removeItem( const KFileItem* );
virtual void listingCompleted();