summaryrefslogtreecommitdiff
path: root/openbox/place.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-13 11:15:51 +0000
committerDana Jansens <danakj@orodu.net>2007-06-13 11:15:51 +0000
commiteb6a2e9c4b334f53d714a2e7f10f73c63c3d2edd (patch)
tree82802298c0d4bb5acdb00f0531b626753cb2dec1 /openbox/place.c
parent97d4f66cd8db231531e2b425390ff1b4a74e5358 (diff)
xinerama support like crazy for struts and everything else too. this probably crashes but its been way too long without a commit.
Diffstat (limited to 'openbox/place.c')
-rw-r--r--openbox/place.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/openbox/place.c b/openbox/place.c
index b6ede657..6f7d490d 100644
--- a/openbox/place.c
+++ b/openbox/place.c
@@ -53,7 +53,7 @@ static Rect *pick_pointer_head(ObClient *c)
gboolean contain = RECT_CONTAINS(*monitor, px, py);
g_free(monitor);
if (contain)
- return screen_area_monitor(c->desktop, i, NULL);
+ return screen_area(c->desktop, i, NULL);
}
g_assert_not_reached();
}
@@ -131,7 +131,7 @@ static Rect **pick_head(ObClient *c)
add_choice(choice, i);
for (i = 0; i < screen_num_monitors; ++i)
- area[i] = screen_area_monitor(c->desktop, choice[i], NULL);
+ area[i] = screen_area(c->desktop, choice[i], NULL);
return area;
}
@@ -380,8 +380,8 @@ static gboolean place_per_app_setting(ObClient *client, gint *x, gint *y,
screen = pick_pointer_head(client);
else if (settings->monitor > 0 &&
(guint)settings->monitor <= screen_num_monitors)
- screen = screen_area_monitor(client->desktop,
- (guint)settings->monitor - 1, NULL);
+ screen = screen_area(client->desktop, (guint)settings->monitor - 1,
+ NULL);
else {
Rect **areas;
guint i;