From 2e79e21c3f4da5183b516e0088f2137c4f27ceff Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Fri, 15 Jan 2021 17:51:33 +0100 Subject: [DolphinView] Fix "Folder is empty" label showing prematurely Don't show the label while still loading. Since there is no property in `KDirLister` a dedicated `m_loading` is added for this purpose. Also, I removed the explicit update on `urlChanged` as the view probably won't change until the lister starts loading. BUG: 430085 --- src/views/dolphinview.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/views/dolphinview.h') diff --git a/src/views/dolphinview.h b/src/views/dolphinview.h index 5dd65eb54..d0285da85 100644 --- a/src/views/dolphinview.h +++ b/src/views/dolphinview.h @@ -689,6 +689,12 @@ private slots: */ void slotDirectoryLoadingCompleted(); + /** + * Invoked when the file item model indicates that the loading of a directory has + * been canceled. + */ + void slotDirectoryLoadingCanceled(); + /** * Is invoked when items of KFileItemModel have been changed. */ @@ -816,6 +822,7 @@ private: bool m_isFolderWritable; bool m_dragging; // True if a dragging is done. Required to be able to decide whether a // tooltip may be shown when hovering an item. + bool m_loading; QUrl m_url; QString m_viewPropertiesContext; -- cgit v1.3