diff options
author | Alexander Golubev <[email protected]> | 2024-02-20 20:33:48 +0300 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-02-22 18:29:31 +0900 |
commit | db4080c1832fa8085e5737e6148baee7d8c3c00e (patch) | |
tree | ef9b1a76769b5b0686b3bb3e5e17ed980280747e /src/gvcore/filedetailview.h | |
parent | a5931c83bdad1b1d137cf30f5c9cf59bf3e4c8cd (diff) | |
download | gwenview-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.h | 3 |
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(); |