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
diff options
context:
space:
mode:
authorLluis Sanchez <llsan@microsoft.com>2019-12-13 15:30:23 +0300
committerLluis Sanchez <llsan@microsoft.com>2019-12-13 15:41:34 +0300
commitec9cad769c478c8b45344d28ddc511aee53f9b30 (patch)
tree5d46e7bec882838678d60fc7838bb4a59bc09c87 /main
parentfb3dfc7b33711bd452e53eedaeafb775f26a4d4d (diff)
Fix dialog parenting issue
When a message dialog is shown, we try to get the currently focused top level window if no parent is provided. This is done by the GetFocusedTopLevelWindow() method that is implemented in MacPlatform. This method should not return auto-hide pads as top level windows, and there is a check for that, but the check doesn't work when the auto-hide pad is implemented with Cocoa, since the pad may have the Cocoa focus but not the GTK focus. It may happen then that an auto-hide pad is used for parenting a message dialog, and if the pad is auto-hidden, the modal dialog will also be hidden and will block the whole IDE. The patch adds an additional check to the condition for detecting if a top level is focused or not. Fixes bug #1027840
Diffstat (limited to 'main')
-rw-r--r--main/src/addins/MacPlatform/MacPlatform.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/addins/MacPlatform/MacPlatform.cs b/main/src/addins/MacPlatform/MacPlatform.cs
index a7047b4c4a..656634f242 100644
--- a/main/src/addins/MacPlatform/MacPlatform.cs
+++ b/main/src/addins/MacPlatform/MacPlatform.cs
@@ -1136,7 +1136,8 @@ namespace MonoDevelop.MacIntegration
bool HasAnyDockWindowFocused ()
{
foreach (var window in Gtk.Window.ListToplevels ()) {
- if (!window.HasToplevelFocus) {
+ // Gtk.Window.HasToplevelFocus may return false for a window that embeds a Cocoa view
+ if (!window.HasToplevelFocus && GtkQuartz.GetWindow (window) != NSApplication.SharedApplication.KeyWindow) {
continue;
}
if (window is Components.Docking.DockFloatingWindow floatingWindow) {