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
path: root/main/src
diff options
context:
space:
mode:
authorMichael Hutchinson <m.j.hutchinson@gmail.com>2011-11-22 01:43:06 +0400
committerMichael Hutchinson <m.j.hutchinson@gmail.com>2011-11-22 01:49:45 +0400
commitacb6aa85cb55bdc5affe9e1d7c24259d1348e749 (patch)
tree265998535bbb59f2da9e2f1e47679851beb70c19 /main/src
parent6319bf9939cad13f480d5e5de0d5012fb3bbc8eb (diff)
[Gtk] Add comment regarding window hint workaround
Diffstat (limited to 'main/src')
-rw-r--r--main/src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/DebugValueWindow.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/DebugValueWindow.cs b/main/src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/DebugValueWindow.cs
index 86b1f589cc..cf20314209 100644
--- a/main/src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/DebugValueWindow.cs
+++ b/main/src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/DebugValueWindow.cs
@@ -45,6 +45,8 @@ namespace MonoDevelop.SourceEditor
this.SkipTaskbarHint = true;
this.Decorated = false;
this.BorderWidth = 2;
+ //HACK: this should be WindowTypeHint.Tooltip, but GTK on mac is buggy and doesn't allow keyboard
+ //input to WindowType.Toplevel windows with WindowTypeHint.Tooltip hint
this.TypeHint = WindowTypeHint.PopupMenu;
this.AllowShrink = false;
this.AllowGrow = false;