Fix issue #76.

This commit is contained in:
Kris Maglione 2008-11-19 15:04:05 -05:00
parent fccc6f77a7
commit e606fc83a5
1 changed files with 2 additions and 1 deletions

View File

@ -221,9 +221,10 @@ mouse_resizecolframe(Frame *f, Align align) {
d = divs;
foreach_column(v, s, a) {
if(a == f->area)
break;
goto found;
d = d->next;
}
found:
if(align&East)
d = d->next;