]> Dogcows Code - chaz/openbox/blobdiff - plugins/placement/placement.c
history placement works. loads. saves. woot.
[chaz/openbox] / plugins / placement / placement.c
index 730a4f76647b2218bbab4dc60d3d738c5eddb547..2627eb84358fd27fea6a808ddf22184cb970b168 100644 (file)
@@ -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);
This page took 0.023263 seconds and 4 git commands to generate.