mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
Disable top resizing for attached modal dialogs
https://bugzilla.gnome.org/show_bug.cgi?id=656619
This commit is contained in:
parent
8c74ad1992
commit
e4da6495d3
@ -2646,6 +2646,7 @@ get_control (MetaFrames *frames,
|
|||||||
{
|
{
|
||||||
MetaFrameGeometry fgeom;
|
MetaFrameGeometry fgeom;
|
||||||
MetaFrameFlags flags;
|
MetaFrameFlags flags;
|
||||||
|
MetaFrameType type;
|
||||||
gboolean has_vert, has_horiz;
|
gboolean has_vert, has_horiz;
|
||||||
cairo_rectangle_int_t client;
|
cairo_rectangle_int_t client;
|
||||||
|
|
||||||
@ -2667,6 +2668,7 @@ get_control (MetaFrames *frames,
|
|||||||
meta_core_get (GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()),
|
meta_core_get (GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()),
|
||||||
frame->xwindow,
|
frame->xwindow,
|
||||||
META_CORE_GET_FRAME_FLAGS, &flags,
|
META_CORE_GET_FRAME_FLAGS, &flags,
|
||||||
|
META_CORE_GET_FRAME_TYPE, &type,
|
||||||
META_CORE_GET_END);
|
META_CORE_GET_END);
|
||||||
|
|
||||||
has_vert = (flags & META_FRAME_ALLOWS_VERTICAL_RESIZE) != 0;
|
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 (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;
|
return META_FRAME_CONTROL_RESIZE_N;
|
||||||
else
|
else
|
||||||
return META_FRAME_CONTROL_TITLE;
|
return META_FRAME_CONTROL_TITLE;
|
||||||
|
Loading…
Reference in New Issue
Block a user