summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2011-09-22 14:17:01 -0400
committerAlberts Muktupāvels <alberts.muktupavels@gmail.com>2015-01-19 15:18:29 +0200
commitf449f785e52bf3ff5ae24bbc6bc42511da68f59d (patch)
tree329ca1dc29a13d16576d1bdcbe211da7fdc3f9ea
parentfde549a8693a0b4edd3a58d84b183af5e9984e6b (diff)
downloadmetacity-f449f785e52bf3ff5ae24bbc6bc42511da68f59d.tar.gz
window: Fix window placement to exclude invisible borders
A window can specify geometry that it is placed at. We need to exclude invisible borders when calculating where to place the window, otherwise the window will have a strange offset. https://bugzilla.gnome.org/show_bug.cgi?id=659848
-rw-r--r--src/core/window.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/window.c b/src/core/window.c
index e7f34bf0..2a2efde4 100644
--- a/src/core/window.c
+++ b/src/core/window.c
@@ -3141,10 +3141,10 @@ adjust_for_gravity (MetaWindow *window,
if (borders)
{
- child_x = borders->total.left;
- child_y = borders->total.top;
- frame_width = child_x + rect->width + borders->total.left;
- frame_height = child_y + rect->height + borders->total.top;
+ child_x = borders->visible.left;
+ child_y = borders->visible.top;
+ frame_width = child_x + rect->width + borders->visible.right;
+ frame_height = child_y + rect->height + borders->visible.bottom;
}
else
{