From 0f491a78406c6111471971c1a1f5502207345403 Mon Sep 17 00:00:00 2001 From: Nathan Date: Sat, 9 Jan 2016 00:06:45 -0500 Subject: [PATCH] Fixed issue #490 --- src/rufus.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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;