From e4da6495d325aaba63fcc5f287292aa5d39c0e12 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 16 Aug 2011 01:15:33 -0400 Subject: [PATCH] Disable top resizing for attached modal dialogs https://bugzilla.gnome.org/show_bug.cgi?id=656619 --- src/ui/frames.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ui/frames.c b/src/ui/frames.c index bf955d1f7..ccf77d8c2 100644 --- a/src/ui/frames.c +++ b/src/ui/frames.c @@ -2646,6 +2646,7 @@ get_control (MetaFrames *frames, { MetaFrameGeometry fgeom; MetaFrameFlags flags; + MetaFrameType type; gboolean has_vert, has_horiz; cairo_rectangle_int_t client; @@ -2667,6 +2668,7 @@ get_control (MetaFrames *frames, meta_core_get (GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), frame->xwindow, META_CORE_GET_FRAME_FLAGS, &flags, + META_CORE_GET_FRAME_TYPE, &type, META_CORE_GET_END); has_vert = (flags & META_FRAME_ALLOWS_VERTICAL_RESIZE) != 0; @@ -2674,7 +2676,7 @@ get_control (MetaFrames *frames, if (POINT_IN_RECT (x, y, fgeom.title_rect)) { - if (has_vert && y <= TOP_RESIZE_HEIGHT) + if (has_vert && y <= TOP_RESIZE_HEIGHT && (type != META_FRAME_TYPE_ATTACHED)) return META_FRAME_CONTROL_RESIZE_N; else return META_FRAME_CONTROL_TITLE;