[metacity] display: make sure to retrieve the toplevel transient for
- From: Alberts Muktupāvels <muktupavels src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [metacity] display: make sure to retrieve the toplevel transient for
- Date: Thu, 2 Mar 2017 22:16:29 +0000 (UTC)
commit ed75b1d1ba438b72198bc272e3f5e3c67abfc378
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Mon Apr 28 17:23:20 2014 -0400
display: make sure to retrieve the toplevel transient for
src/core/display.c | 22 ++++++++++++++++------
1 files changed, 16 insertions(+), 6 deletions(-)
---
diff --git a/src/core/display.c b/src/core/display.c
index 9920936..5cf79af 100644
--- a/src/core/display.c
+++ b/src/core/display.c
@@ -3258,6 +3258,18 @@ meta_display_set_grab_op_cursor (MetaDisplay *display,
XFreeCursor (display->xdisplay, cursor);
}
+static MetaWindow *
+get_toplevel_transient_for (MetaWindow *window)
+{
+ while (TRUE)
+ {
+ MetaWindow *parent = meta_window_get_transient_for (window);
+ if (parent == NULL)
+ return window;
+ window = parent;
+ }
+}
+
gboolean
meta_display_begin_grab_op (MetaDisplay *display,
MetaScreen *screen,
@@ -3308,15 +3320,13 @@ meta_display_begin_grab_op (MetaDisplay *display,
}
}
+ grab_window = window;
+
/* If window is a modal dialog attached to its parent,
* grab the parent instead for moving.
*/
- if (window && meta_window_is_attached_dialog (window) &&
- meta_grab_op_is_moving (op))
- grab_window = meta_window_get_transient_for (window);
-
- if (grab_window == NULL)
- grab_window = window;
+ if (meta_grab_op_is_moving (op))
+ grab_window = get_toplevel_transient_for (window);
/* FIXME:
* If we have no MetaWindow we do our best
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]