summaryrefslogtreecommitdiffstats
path: root/beetplayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'beetplayer.cpp')
-rw-r--r--beetplayer.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/beetplayer.cpp b/beetplayer.cpp
index 82b749a..99d5a92 100644
--- a/beetplayer.cpp
+++ b/beetplayer.cpp
@@ -32,8 +32,13 @@ BeetPlayer::BeetPlayer(QWidget *parent, Qt::WindowFlags f) : QMainWindow(parent,
connect(mPlayerWidget, SIGNAL(numFilesChanged(int)), this, SLOT(setNumFiles(int)));
connect(mPlayerWidget, SIGNAL(playListLengthChanged(quint64)), this, SLOT(setPlayListLength(quint64)));
connect(mPlayerWidget, SIGNAL(message(QString)), this, SLOT(setMessage(QString)));
+ connect(mPlayerWidget, SIGNAL(setWinTitle(QString)), this, SLOT(setWindowTitle(QString)));
createStatusbar();
setCentralWidget(mPlayerWidget);
+ splash.showMessage(tr("Populating..."), Qt::AlignHCenter, Qt::yellow);
+ qApp->processEvents();
+ mPlayerWidget->doStop();
+ mPlayerWidget->doPopulateByArtist();
}
void BeetPlayer::openDatabase(){