From 1f1c765285466bab2972eda4c7afe44ac146f69e Mon Sep 17 00:00:00 2001 From: Martin Duquesnoy Date: Fri, 24 Oct 2008 16:33:39 +0200 Subject: [PATCH] client: Add comment for uicb_client_prev --- src/client.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/client.c b/src/client.c index 70b9fda..a7ee25f 100644 --- a/src/client.c +++ b/src/client.c @@ -66,6 +66,7 @@ client_detach(Client *c) return; } +/* Need to be fix */ void uicb_client_prev(uicb_t cmd) { @@ -236,7 +237,8 @@ client_manage(Window w, XWindowAttributes *wa) c = emalloc(1, sizeof(Client)); c->win = w; c->geo.x = wa->x; - c->geo.y = wa->y + sgeo.y + conf.titlebar.height; /* Default free placement */ + /* Default free placement */ + c->geo.y = wa->y + sgeo.y + conf.titlebar.height; c->geo.width = wa->width; c->geo.height = wa->height; c->tag = seltag;