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:
authorRodrigo Moya <rodrigo.moya@xamarin.com>2018-10-20 21:55:31 +0300
committerRodrigo Moya <rodrigo.moya@xamarin.com>2018-11-27 21:27:19 +0300
commit7643be8596460949631a561900f0ec5bc87a28cb (patch)
tree4b7b0fa59a68c0ea2d387b6d918e128dc4a1664a /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs
parent6af5f52d0794092a0d96bf014e398fca9a6470c6 (diff)
[Ide] Add support for Welcome dialog providers
If there's a dialog provider for the welcome page, prefer that, and only use Widget version of it as a fallback. And when so, give control to that window, hiding the main window.
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs
index 4e9b56c683..034e335011 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/FileCommands.cs
@@ -132,7 +132,7 @@ namespace MonoDevelop.Ide.Commands
{
protected override void Run ()
{
- IdeApp.ProjectOperations.NewSolution ();
+ IdeApp.ProjectOperations.NewSolution ().Ignore ();
}
}
@@ -141,7 +141,7 @@ namespace MonoDevelop.Ide.Commands
{
protected override void Run ()
{
- IdeApp.ProjectOperations.NewSolution ("MonoDevelop.Workspace");
+ IdeApp.ProjectOperations.NewSolution ("MonoDevelop.Workspace").Ignore ();
}
}