We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54f55ef commit e7508b9Copy full SHA for e7508b9
External/Plugins/ProjectManager/Projects/MoreProjectPaths.cs
@@ -2,6 +2,7 @@
2
using System.Collections.Generic;
3
using System.IO;
4
using PluginCore.Helpers;
5
+using PluginCore;
6
7
namespace ProjectManager.Projects
8
{
@@ -28,7 +29,7 @@ public static List<String> GetAllProjectDirs()
28
29
30
allDirs.AddRange(Directory.GetDirectories(ProjectTemplatesDirectory));
31
}
- if (Directory.Exists(PathHelper.UserProjectsDir))
32
+ if (!PluginBase.MainForm.StandaloneMode && Directory.Exists(PathHelper.UserProjectsDir))
33
34
allDirs.AddRange(Directory.GetDirectories(PathHelper.UserProjectsDir));
35
0 commit comments