diff --git a/ILSpy/AssemblyListManager.cs b/ILSpy/AssemblyListManager.cs
index 57a7997eb..eba87ab81 100644
--- a/ILSpy/AssemblyListManager.cs
+++ b/ILSpy/AssemblyListManager.cs
@@ -66,9 +66,11 @@ namespace ICSharpCode.ILSpy
if (firstList != null)
return new AssemblyList(firstList);
else
- return new AssemblyList(listName ?? "(Default)");
+ return new AssemblyList(listName ?? DefaultListName);
}
+ public const string DefaultListName = "(Default)";
+
///
/// Saves the specifies assembly list into the config file.
///
diff --git a/ILSpy/MainWindow.xaml b/ILSpy/MainWindow.xaml
index 02b774733..154630434 100644
--- a/ILSpy/MainWindow.xaml
+++ b/ILSpy/MainWindow.xaml
@@ -15,6 +15,9 @@
+
@@ -36,6 +39,11 @@