From 47f1a8634bc9a69f72589097cc2fa9886307af2a Mon Sep 17 00:00:00 2001 From: Elijah Newren Date: Mon, 3 Oct 2005 19:00:01 +0000 Subject: [PATCH] =?UTF-8?q?Patch=20from=20Bj=C3=B6rn=20Lindqvist=20to=20ha?= =?UTF-8?q?ve=20ancestors=20come=20along=20with=20the?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2005-10-03 Elijah Newren Patch from Björn Lindqvist to have ancestors come along with the transient when moving the window from one workspace to another. Fixes #314977. * src/window.c (meta_window_change_workspace): have all ancestors change workspaces too --- ChangeLog | 9 +++++++++ src/window.c | 2 ++ 2 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index a4ba0bde4..c3ae57eae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2005-10-03 Elijah Newren + + Patch from Björn Lindqvist to have ancestors come along with the + transient when moving the window from one workspace to another. + Fixes #314977. + + * src/window.c (meta_window_change_workspace): have all ancestors + change workspaces too + 2005-10-03 Elijah Newren * configure.in: post-release version bump to 2.12.2 diff --git a/src/window.c b/src/window.c index c6b67690a..fb2ec9c35 100644 --- a/src/window.c +++ b/src/window.c @@ -3628,6 +3628,8 @@ meta_window_change_workspace (MetaWindow *window, meta_window_foreach_transient (window, change_workspace_foreach, workspace); + meta_window_foreach_ancestor (window, change_workspace_foreach, + workspace); } static void