Skip to content

Commit abbb423

Browse files
committed
technicality!
1 parent 614e605 commit abbb423

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/SongControlMenu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ void SongControlMenu::updateCurrentLabel() {
168168
if (songManager.isOverride()) this->m_headerLabl->setString("Current Song (Custom Override):");
169169
else if (songManager.getConstantShuffleMode()) this->m_headerLabl->setString("Current Song (Constant Shuffle Mode):");
170170
else this->m_headerLabl->setString("Current Song:");
171-
if (!songManager.getPlaylistIsEmpty() && Utils::getBool("loadPlaylistFile")) {
171+
if (!songManager.getPlaylistIsEmpty() && Utils::getBool("loadPlaylistFile") && !songManager.isOverride()) {
172172
const std::string& newHeaderString = geode::utils::string::replace(this->m_headerLabl->getString(), "Song", fmt::format("Song from {}", songManager.getPlaylistFileName()));
173173
this->m_headerLabl->setString(newHeaderString.c_str());
174174
}

0 commit comments

Comments
 (0)