1
1
Fork 0
mirror of https://github.com/pbatard/rufus.git synced 2024-08-14 23:57:05 +00:00

Fixed issue #490

This commit is contained in:
Nathan 2016-01-09 00:06:45 -05:00
parent 92631d1204
commit 0f491a7840

View file

@ -687,7 +687,11 @@ static BOOL PopulateProperties(int ComboIndex)
SetWindowTextU(hLabel, DriveLabel.String[ComboIndex]); SetWindowTextU(hLabel, DriveLabel.String[ComboIndex]);
} }
} else { } else {
SetWindowTextU(hLabel, img_report.label); if (IsChecked(IDC_BOOT)) {
SetWindowTextU(hLabel, img_report.label);
} else {
SetWindowTextU(hLabel, DriveLabel.String[ComboIndex]);
}
} }
return TRUE; return TRUE;