Skip to content

Commit 2530c5d

Browse files
committed
Update BrowseWindow.xaml.cs
1 parent 6e430cc commit 2530c5d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Views/BrowseWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ public BrowseGridItem(ArchiveTreeNode node)
227227
{
228228
Name = node.Name;
229229
ItemType = node.IsDirectory ? "Folder" : "File";
230-
FullPath = string.IsNullOrWhiteSpace(node.FullPath) ? "\" : node.FullPath;
230+
FullPath = string.IsNullOrWhiteSpace(node.FullPath) ? "\\" : node.FullPath;
231231
SizeText = node.Size.HasValue ? node.Size.Value.ToString("N0") : string.Empty;
232232
}
233233

0 commit comments

Comments
 (0)