From 00e49b330c413dae96ba16b3ce2a1a6962b0f0df Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Thu, 15 Sep 2011 15:08:07 -0400 Subject: [PATCH] frames: Take out accidental south resize disable of attached dialogs https://bugzilla.gnome.org/show_bug.cgi?id=657795 --- src/ui/frames.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/frames.c b/src/ui/frames.c index e964eae0b..96fcc38a8 100644 --- a/src/ui/frames.c +++ b/src/ui/frames.c @@ -2741,7 +2741,7 @@ get_control (MetaFrames *frames, { if (has_vert && has_horiz) return META_FRAME_CONTROL_RESIZE_SW; - else if (has_vert && has_north_resize) + else if (has_vert) return META_FRAME_CONTROL_RESIZE_S; else if (has_horiz) return META_FRAME_CONTROL_RESIZE_W;