X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=plugins%2Fplacement%2Fplacement.c;h=2627eb84358fd27fea6a808ddf22184cb970b168;hb=c3628a36eda55cb10545abd1e90365b23b6fbfa1;hp=730a4f76647b2218bbab4dc60d3d738c5eddb547;hpb=474f689132d906a553bdc695d3c179652cbe8c53;p=chaz%2Fopenbox diff --git a/plugins/placement/placement.c b/plugins/placement/placement.c index 730a4f76..2627eb84 100644 --- a/plugins/placement/placement.c +++ b/plugins/placement/placement.c @@ -8,12 +8,14 @@ gboolean history = TRUE; -void place_random(Client *c) +static void place_random(Client *c) { int l, r, t, b; int x, y; Rect *area; + if (ob_state == State_Starting) return; + area = screen_area(c->desktop); l = area->x; @@ -31,11 +33,12 @@ void place_random(Client *c) TRUE, TRUE); } -void event(ObEvent *e, void *foo) +static void event(ObEvent *e, void *foo) { g_assert(e->type == Event_Client_New); - if (ob_state == State_Starting) return; + /* requested a position */ + if (e->data.c.client->positioned) return; if (!place_history(e->data.c.client)) place_random(e->data.c.client);