mirror of
https://github.com/gtalent/sc9k.git
synced 2025-09-11 13:52:56 -05:00
Fix next song in status bar
This commit is contained in:
@@ -108,7 +108,7 @@ void MainWindow::obsConnectionLost() {
|
||||
void MainWindow::refreshStatusBar() {
|
||||
const auto openLpStatus = m_openLpConnected ? tr("OpenLP: Connected") : tr("OpenLP: Not Connected");
|
||||
const auto obsStatus = m_obsConnected ? tr("OBS: Connected") : tr("OBS: Not Connected");
|
||||
const auto nextSong = m_slideView->getNextSong();
|
||||
const auto nextSong = m_openlpClient.getNextSong();
|
||||
const auto nextSongTxt = m_openLpConnected ? " | Next Song: " + nextSong : "";
|
||||
statusBar()->showMessage(openLpStatus + " | " + obsStatus + nextSongTxt);
|
||||
}
|
||||
|
Reference in New Issue
Block a user