From ac416fd27e5e620aa833f7a140febf7a1d46abf3 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Sun, 6 Feb 2005 02:18:06 +0000 Subject: testing failed, hopefully this is reverting to the right place --- openbox/place.c | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'openbox/place.c') diff --git a/openbox/place.c b/openbox/place.c index 67a1631b..6669a28e 100644 --- a/openbox/place.c +++ b/openbox/place.c @@ -375,13 +375,9 @@ static gboolean place_transient(ObClient *client, gint *x, gint *y) void place_client(ObClient *client, gint *x, gint *y) { - /* non-normal clients has less rules, and windows that are being restored - * from a session do also. we can assume you want it back where you - * saved it */ - gint rude = client_normal(client) && !client->session; if (client->positioned) - rude = 0; - else if (place_transient(client, x, y) || + return; + if (place_transient(client, x, y) || ((config_place_policy == OB_PLACE_POLICY_MOUSE) ? place_under_mouse(client, x, y) : place_smart(client, x, y, SMART_FULL) || @@ -393,9 +389,4 @@ void place_client(ObClient *client, gint *x, gint *y) frame_frame_gravity(client->frame, x, y); } else g_assert_not_reached(); /* the last one better succeed */ - /* make sure the window is visible. */ - client_find_onscreen(client, x, y, - client->frame->area.width, - client->frame->area.height, - rude); } -- cgit v1.2.3