Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortherzok <marius.ungureanu@xamarin.com>2016-04-04 13:42:12 +0300
committertherzok <marius.ungureanu@xamarin.com>2016-04-04 13:43:13 +0300
commit9dc3a8b5d1ccf32437b9960ab8b5ae178437c5cd (patch)
tree0280f2b92f6af93662d81260268c53851ee287e2 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Desktop
parent3a1e4ab0d6298abf39af364c202a21109e825435 (diff)
[Ide] Don't remove projects from recent projects if they can't be found
The file is inacessible if it is on a network drive that's not connected. Git checkout also removes the file and writes a new one causing the project to be removed. Bug 37122 - XS deletes solution from "recently opened" list if it is unavailable
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Desktop')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Desktop/RecentOpen.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Desktop/RecentOpen.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Desktop/RecentOpen.cs
index 8ad57a0cfa..7675e92b7c 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Desktop/RecentOpen.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Desktop/RecentOpen.cs
@@ -53,7 +53,7 @@ namespace MonoDevelop.Ide.Desktop
public FdoRecentFiles (string storageFile)
{
recentFiles = new RecentFileStorage (storageFile);
- recentFiles.RemoveMissingFiles (projGroup, fileGroup);
+ recentFiles.RemoveMissingFiles (fileGroup);
}
public override event EventHandler Changed {