diff options
author | jasper | 2007-10-02 18:01:45 +0000 |
---|---|---|
committer | jasper | 2007-10-02 18:01:45 +0000 |
commit | 75c4bd0d809c8e1feb73f445905bcfe849c837ad (patch) | |
tree | 31a8cceed8123a90a6943b6ca7954ebb93c64082 /client.c | |
parent | 677aecb9cfd26dd078a0a58d4babc8945a39b55f (diff) | |
download | cwm-75c4bd0d809c8e1feb73f445905bcfe849c837ad.tar.gz |
When cycling, only the end of the window names will be printed if the
name is too long. so show the beginning instead.
from Pierre Riteau <pierre.riteau at free.fr>
"looks correct" matthieu@
Diffstat (limited to '')
-rw-r--r-- | client.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -4,7 +4,7 @@ * Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org> * All rights reserved. * - * $Id: client.c,v 1.6 2007/06/08 16:29:19 jasper Exp $ + * $Id: client.c,v 1.7 2007/10/02 18:01:45 jasper Exp $ */ #include "headers.h" @@ -705,6 +705,10 @@ client_cycleinfo(struct client_ctx *cc) if ((diff = cc->geom.height - (y + h)) < 0) y += diff; + /* Don't hide the beginning of the window names */ + if (x < 0) + x = 0; + XReparentWindow(X_Dpy, sc->infowin, cc->win, 0, 0); XMoveResizeWindow(X_Dpy, sc->infowin, x, y, w, h); XMapRaised(X_Dpy, sc->infowin); |