Skip to content

Commit 0489d9b

Browse files
committed
Fix for generic projects not opening...
1 parent fc143ef commit 0489d9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

External/Plugins/ProjectManager/PluginMain.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ public void HandleEvent(Object sender, NotifyEvent e, HandlingPriority priority)
404404

405405
case EventType.FileOpening:
406406
// if this is a project file, we can handle it ourselves
407-
if (FileInspector.IsProject(te.Value))
407+
if (FileInspector.IsProject(te.Value) || ProjectCreator.IsKnownProject(Path.GetExtension(te.Value).ToLower()))
408408
{
409409
te.Handled = true;
410410
OpenProjectSilent(te.Value);

0 commit comments

Comments
 (0)