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 <mhutch@xamarin.com>2012-06-02 08:00:27 +0400
committerMichael Hutchinson <mhutch@xamarin.com>2012-06-02 08:00:27 +0400
commitaa46cebf673b0d06daa0e9e268eb91e4695ccc74 (patch)
treed44ee9b254462bda576e08fa499143a1c092a989
parentaf1ef0ba2edf6360c5c1f2b56f0a43d702b17f78 (diff)
[Ide] Fix document switch dialog on Windows
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/DocumentSwitcher.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/DocumentSwitcher.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/DocumentSwitcher.cs
index cea16da4da..a4a88b5094 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/DocumentSwitcher.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/DocumentSwitcher.cs
@@ -558,7 +558,7 @@ namespace MonoDevelop.Ide
Label labelTitle = new Label ();
DocumentList documentList = new DocumentList ();
- public DocumentSwitcher (Gtk.Window parent, bool startWithNext) : base(Gtk.WindowType.Popup)
+ public DocumentSwitcher (Gtk.Window parent, bool startWithNext) : base(Gtk.WindowType.Toplevel)
{
IdeApp.CommandService.IsEnabled = false;
this.documents = new List<MonoDevelop.Ide.Gui.Document> (
@@ -720,4 +720,4 @@ namespace MonoDevelop.Ide
return false;
}
}
-} \ No newline at end of file
+}