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:
authorCody Russell <cody@jhu.edu>2015-08-16 22:29:26 +0300
committerCody Russell <cody@jhu.edu>2015-08-16 22:30:49 +0300
commit868ad8da26c4e8e3a7c78d461f2ac4300c7999bc (patch)
tree83279647c5d8382d2328e9d3550e753837c7dc00 /main/src/core/MonoDevelop.Ide
parent5f22884f1587995ef445325014eed2adf1f4d28d (diff)
[Ide] Remove Utility type hint from DockFloatingWindow
This window hint doesn't seem to be doing anything for us, and on OSX it is causes the window to disappear when the app loses focus. Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=26218
Diffstat (limited to 'main/src/core/MonoDevelop.Ide')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockItem.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockItem.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockItem.cs
index 4aace5dc41..02f788d000 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockItem.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Docking/DockItem.cs
@@ -593,7 +593,6 @@ namespace MonoDevelop.Components.Docking
{
public DockFloatingWindow (Window dockParent, string title) : base (title)
{
- TypeHint = Gdk.WindowTypeHint.Utility;
this.DockParent = dockParent;
}