mirror of https://github.com/0intro/wmii
Fix issue #78
This commit is contained in:
parent
01c5643f9f
commit
fccc6f77a7
|
@ -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_
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue