acme: attempt to fix tag lines collapsing to zero height on window move (issue 189)

we'r getting a rectangle taller than a single line from
coladd() which causes textresize() to collapse the tag
text to zero height.

should probably fix coladd() instead.
This commit is contained in:
cinap_lenrek 2013-10-20 22:38:35 +02:00
parent 8ceb100fa4
commit 95c865a497

View file

@ -184,7 +184,8 @@ winresize(Window *w, Rectangle r, int safe)
w->taglines = wintaglines(w, r);
r1.max.y = min(r.max.y, r1.min.y + w->taglines*font->height);
}
if(Dy(r1) < font->height)
r1.max.y = r1.min.y+font->height;
y = r1.max.y;
if(!safe || !eqrect(w->tag.r, r1)){
textresize(&w->tag, r1);