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:
authorMichael Hutchinson <m.j.hutchinson@gmail.com>2011-10-02 21:56:04 +0400
committerMichael Hutchinson <m.j.hutchinson@gmail.com>2011-10-02 21:56:04 +0400
commit349676cc7a498859b7c66c52c64bb5857deb9195 (patch)
tree3f5c7e5fc8bb7c58907bb6de356619eb491c20a2 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands
parentb633104da6474956457c0882a9296b3276c2a63f (diff)
[Ide] About dialog should not be modal on Mac
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/HelpCommands.cs9
1 files changed, 1 insertions, 8 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/HelpCommands.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/HelpCommands.cs
index c8d01b69d9..b47f47381f 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/HelpCommands.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/HelpCommands.cs
@@ -71,14 +71,7 @@ namespace MonoDevelop.Ide.Commands
{
protected override void Run ()
{
- var dlg = new CommonAboutDialog ();
- try {
- MessageService.PlaceDialog (dlg, null);
- dlg.Run ();
- }
- finally {
- dlg.Destroy ();
- }
+ CommonAboutDialog.ShowAboutDialog ();
}
}