mirror of https://github.com/0intro/wmii
Fix creation of columns at the left of the screen.
This commit is contained in:
parent
38efe73427
commit
afa8e67fa7
|
@ -80,6 +80,7 @@ Area*
|
|||
column_new(View *v, Area *pos, int scrn, uint w) {
|
||||
Area *a;
|
||||
|
||||
assert(!pos || !pos->floating);
|
||||
a = area_create(v, pos, scrn, w);
|
||||
return a;
|
||||
#if 0
|
||||
|
|
|
@ -1013,7 +1013,7 @@ msg_sendclient(View *v, IxpMsg *m, bool swap) {
|
|||
/* XXX: Multihead. */
|
||||
if(a->prev)
|
||||
to = a->prev;
|
||||
a = v->floating;
|
||||
a = nil;
|
||||
break;
|
||||
case LRIGHT:
|
||||
if(a->floating)
|
||||
|
|
Loading…
Reference in New Issue