Skip to content

Commit

Permalink
bugfix: Fixed incorrect title showing after selecting a CD image in G…
Browse files Browse the repository at this point in the history
…UI (fixes #1604)
  • Loading branch information
midwan committed Jan 22, 2025
1 parent acadd15 commit f6183b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osdep/gui/PanelQuickstart.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ static void AdjustDropDownControls()
{
for (auto i = 0; i < static_cast<int>(lstMRUCDList.size()); ++i)
{
if (lstMRUCDList[i].c_str() != changed_prefs.cdslots[0].name)
if (strcmp(lstMRUCDList[i].c_str(), changed_prefs.cdslots[0].name) == 0)
{
cboCDFile->setSelected(i);
break;
Expand Down

0 comments on commit f6183b7

Please # to comment.