no more biting
This commit is contained in:
parent
2d23eb93a0
commit
cee7a6ab10
@ -123,6 +123,9 @@ frtick(Frame *f, Point pt, int ticked)
|
||||
return;
|
||||
pt.x--; /* looks best just left of where requested */
|
||||
r = Rect(pt.x, pt.y, pt.x+FRTICKW, pt.y+f->font->height);
|
||||
/* can go into left border but not right */
|
||||
if(r.max.x > f->r.max.x)
|
||||
r.max.x = f->r.max.x;
|
||||
if(ticked){
|
||||
draw(f->tickback, f->tickback->r, f->b, nil, pt);
|
||||
draw(f->b, r, f->tick, nil, ZP);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user