1 parent 6e430cc commit 2530c5dCopy full SHA for 2530c5d
1 file changed
Views/BrowseWindow.xaml.cs
@@ -227,7 +227,7 @@ public BrowseGridItem(ArchiveTreeNode node)
227
{
228
Name = node.Name;
229
ItemType = node.IsDirectory ? "Folder" : "File";
230
- FullPath = string.IsNullOrWhiteSpace(node.FullPath) ? "\" : node.FullPath;
+ FullPath = string.IsNullOrWhiteSpace(node.FullPath) ? "\\" : node.FullPath;
231
SizeText = node.Size.HasValue ? node.Size.Value.ToString("N0") : string.Empty;
232
}
233
0 commit comments