From ada16756d69c012c089733f6ce4e9271f84ccca6 Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Mon, 2 Sep 2019 09:12:48 +0200 Subject: [PATCH] Reset progress bar text when directory loading starts Dolphin shows a different text for whether it is loading the directory or currently sorting its contents. However, when entering a folder that causes sort criteria to change (e.g. because of different view properties in that folder), the status bar text is changed to "Sorting..." while it is still actually loading the folder. When loading a directory starts, reset any status bar text to ensure "Loading..." is displayed in this case. Differential Revision: >https://phabricator.kde.org/D23459 --- src/dolphinviewcontainer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dolphinviewcontainer.cpp b/src/dolphinviewcontainer.cpp index 5d1d257e5..585610550 100644 --- a/src/dolphinviewcontainer.cpp +++ b/src/dolphinviewcontainer.cpp @@ -566,6 +566,7 @@ void DolphinViewContainer::slotDirectoryLoadingStarted() // Trigger an undetermined progress indication. The progress // information in percent will be triggered by the percent() signal // of the directory lister later. + m_statusBar->setProgressText(QString()); updateDirectoryLoadingProgress(-1); } } -- 2.47.3