Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.

Commit cfcb337

Browse files
committed
revert space fix (Avalonia fixed this bug)
1 parent e4d1bf0 commit cfcb337

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ILSpy.Core/MainWindow.xaml.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1123,8 +1123,7 @@ public void OpenFiles(string[] fileNames, bool focusNode = true)
11231123
async void LoadAssemblies(IEnumerable<string> fileNames, List<LoadedAssembly> loadedAssemblies = null, bool focusNode = true)
11241124
{
11251125
SharpTreeNode lastNode = null;
1126-
foreach (string name in fileNames) {
1127-
string file = Uri.UnescapeDataString(name);
1126+
foreach (string file in fileNames) {
11281127
switch (Path.GetExtension(file)) {
11291128
case ".nupkg":
11301129
this.handlingNugetPackageSelection = true;

0 commit comments

Comments
 (0)