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
This commit is contained in:
Kai Uwe Broulik 2019-09-02 09:12:48 +02:00
parent 246a525fda
commit ada16756d6

View file

@ -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);
}
}