Fixes for project loading progress display (#3672)

Fix project loading progress jumping back.

Show the name of the track currently being loaded.
This commit is contained in:
Hyunjin Song
2017-07-07 03:47:01 +09:00
committed by Oskar Wallgren
parent 494714bf44
commit c6c67b3c75
3 changed files with 35 additions and 9 deletions

View File

@@ -97,6 +97,10 @@ public:
void processNextBuffer();
inline int getLoadingTrackCount() const
{
return m_nLoadingTrack;
}
inline int getMilliseconds() const
{
return m_elapsedMilliSeconds;
@@ -339,6 +343,7 @@ private:
ControllerVector m_controllers;
int m_nLoadingTrack;
QString m_fileName;
QString m_oldFileName;