Fix creation of columns at the left of the screen.

This commit is contained in:
Kris Maglione 2008-10-15 21:22:49 -04:00
parent 38efe73427
commit afa8e67fa7
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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)