1
Fork 0

changed dropdown contents

This commit is contained in:
Jake Howard 2014-11-17 16:11:08 +00:00
parent 13a5aac6c3
commit e858b4f46b
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ namespace Saviour_Backup_System
DriveInfo[] drives = USBTools.getConnectedDrives();
foreach (DriveInfo drive in drives)
{
drivesDropdown.Items.Add(drive.VolumeLabel);
drivesDropdown.Items.Add(drive.Name + " " + drive.VolumeLabel);
}
}
}