wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit 7f57a9fd5a446d02b61f4432aefce340c76fd799
parent 9eded9b8cdca2100ae61fe1e91188c859f19eb0e
Author: Kris Maglione <kris@suckless.org>
Date:   Thu, 27 May 2010 21:30:13 -0400

Don't push dock windows to the top of the stack.

Diffstat:
cmd/wmii/frame.c | 8--------
1 file changed, 0 insertions(+), 8 deletions(-)

diff --git a/cmd/wmii/frame.c b/cmd/wmii/frame.c @@ -97,7 +97,6 @@ frame_insert(Frame *f, Frame *pos) { bool frame_restack(Frame *f, Frame *above) { Client *c; - Frame *fp; Area *a; c = f->client; @@ -107,13 +106,6 @@ frame_restack(Frame *f, Frame *above) { if(f == above) return false; - if(above == nil && !(c->w.ewmh.type & TypeDock)) - for(fp=a->stack; fp; fp=fp->snext) - if(fp->client->w.ewmh.type & TypeDock) - above = fp; - else - break; - if(f->sprev || f == a->stack) if(f->sprev == above) return false;