diff --git a/src/rufus.c b/src/rufus.c index e31e2fee..5c8b9dfa 100644 --- a/src/rufus.c +++ b/src/rufus.c @@ -687,7 +687,11 @@ static BOOL PopulateProperties(int ComboIndex) SetWindowTextU(hLabel, DriveLabel.String[ComboIndex]); } } else { - SetWindowTextU(hLabel, img_report.label); + if (IsChecked(IDC_BOOT)) { + SetWindowTextU(hLabel, img_report.label); + } else { + SetWindowTextU(hLabel, DriveLabel.String[ComboIndex]); + } } return TRUE;