summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-03-10 00:44:43 +0000
committerDana Jansens <danakj@orodu.net>2007-03-10 00:44:43 +0000
commitae246097a5cde4a72f1e8558436ce4aae455d164 (patch)
treebc2605513faf04d71257a605f423d68ecc218302
parent96abc207f28b0e558fc531702fe59a21a0600e64 (diff)
let you put windows with the titlebar off screen.. for mikachu.
but also don't let applications put themselves under the struts!
-rw-r--r--openbox/client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/client.c b/openbox/client.c
index 682de02a..bf5c8bec 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -721,8 +721,8 @@ gboolean client_find_onscreen(ObClient *self, gint *x, gint *y, gint w, gint h,
*y = a->y + a->height - self->frame->area.height/10;
if (!self->strut.left && *x + self->frame->area.width*9/10 - 1 < a->x)
*x = a->x - self->frame->area.width*9/10;
- if (!self->strut.top && *y < a->y)
- *y = a->y;
+ if (!self->strut.top && *y + self->frame->area.height*9/10 - 1 < a->y)
+ *y = a->y - self->frame->area.width*9/10;
}
/* This here doesn't let windows even a pixel outside the screen,
@@ -735,7 +735,7 @@ gboolean client_find_onscreen(ObClient *self, gint *x, gint *y, gint w, gint h,
/* avoid the xinerama monitor divide while we're at it,
* remember to fix the placement stuff to avoid it also and
* then remove this XXX */
- a = screen_physical_area_monitor(client_monitor(self));
+ a = screen_area(self->desktop);
/* dont let windows map into the strut unless they
are bigger than the available area */
if (w <= a->width) {