Browse Source

include drive letter on windows.

Dan Walmsley 6 years ago
parent
commit
2afa74e628
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Windows/Avalonia.Win32/WindowsMountedVolumeInfoListener.cs

+ 1 - 1
src/Windows/Avalonia.Win32/WindowsMountedVolumeInfoListener.cs

@@ -36,7 +36,7 @@ namespace Avalonia.Win32
                                 .Select(p => new MountedVolumeInfo()
                                 {
                                     VolumeLabel = string.IsNullOrEmpty(p.VolumeLabel.Trim()) ? p.RootDirectory.FullName 
-                                                                                             : p.VolumeLabel,
+                                                                                             : $"{p.VolumeLabel} ({p.Name})",
                                     VolumePath = p.RootDirectory.FullName,
                                     VolumeSizeBytes = (ulong)p.TotalSize
                                 })