From: Kai Uwe Broulik Date: Mon, 2 Sep 2019 07:12:48 +0000 (+0200) Subject: Reset progress bar text when directory loading starts X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/ada16756d69c012c089733f6ce4e9271f84ccca6?hp=-c 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 --- ada16756d69c012c089733f6ce4e9271f84ccca6 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); } }