This commit is contained in:
Kris Maglione 2008-11-19 14:56:40 -05:00
parent 01c5643f9f
commit fccc6f77a7
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,4 @@
/* Copyright ©2004-2006 Anselm R. Garbe <garbeam at gmail dot com>
* Copyright ©2006-2008 Kris Maglione <fbsdaemon@gmail.com>
/* Copyright ©2006-2008 Kris Maglione <fbsdaemon@gmail.com>
* See LICENSE file for license details.
*/
#define IXP_NO_P9_

View File

@ -426,6 +426,7 @@ view_restack(View *v) {
Divide *d;
Frame *f;
Area *a;
int s;
if(v != selview)
return;
@ -448,7 +449,7 @@ view_restack(View *v) {
for(d = divs; d && d->w->mapped; d = d->next)
vector_lpush(&wins, d->w->w);
for(a=v->firstarea; a; a=a->next)
foreach_column(v, s, a)
if(a->frame) {
vector_lpush(&wins, a->sel->client->framewin->w);
for(f=a->frame; f; f=f->anext)