[mutter/wip/exalm/focused-appearance: 532/534] stack: Check workspace in get_default_focus_window()
- From: Alexander Mikhaylenko <alexm src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter/wip/exalm/focused-appearance: 532/534] stack: Check workspace in get_default_focus_window()
- Date: Fri, 30 Jul 2021 13:46:44 +0000 (UTC)
commit 7c535482dade807dab83de7fa4041dea785951ea
Author: Alexander Mikhaylenko <exalm7659 gmail com>
Date: Sat Oct 12 23:53:19 2019 +0500
stack: Check workspace in get_default_focus_window()
Check against the window argument, instead of active workspace.
src/core/stack.c | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
---
diff --git a/src/core/stack.c b/src/core/stack.c
index 62b8954e88..95223e48e4 100644
--- a/src/core/stack.c
+++ b/src/core/stack.c
@@ -34,6 +34,7 @@
#include "core/frame.h"
#include "core/meta-workspace-manager-private.h"
#include "core/window-private.h"
+#include "core/workspace-private.h"
#include "meta/group.h"
#include "meta/prefs.h"
#include "meta/workspace.h"
@@ -1020,7 +1021,8 @@ window_contains_point (MetaWindow *window,
}
static gboolean
-window_can_get_default_focus (MetaWindow *window)
+window_can_get_default_focus (MetaWindow *window,
+ MetaWorkspace *workspace)
{
if (window->unmaps_pending > 0)
return FALSE;
@@ -1031,7 +1033,10 @@ window_can_get_default_focus (MetaWindow *window)
if (!meta_window_is_focusable (window))
return FALSE;
- if (!meta_window_should_be_showing (window))
+ if (!meta_window_showing_on_its_workspace (window))
+ return FALSE;
+
+ if (!meta_window_located_on_workspace (window, workspace))
return FALSE;
if (window->type == META_WINDOW_DOCK)
@@ -1067,7 +1072,7 @@ get_default_focus_window (MetaStack *stack,
if (window == not_this_one)
continue;
- if (!window_can_get_default_focus (window))
+ if (!window_can_get_default_focus (window, workspace))
continue;
if (must_be_at_point && !window_contains_point (window, root_x, root_y))
@@ -1138,7 +1143,7 @@ meta_stack_get_default_focus_candidates (MetaStack *stack,
{
GList *next = l->next;
- if (!window_can_get_default_focus (l->data))
+ if (!window_can_get_default_focus (l->data, workspace))
windows = g_list_delete_link (windows, l);
l = next;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]