plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit cee7a6ab10235f764435f394d98b9c1e33b4eeb4
parent 2d23eb93a0573b4dbe2ecc0a2a157c9e57368dd1
Author: rsc <devnull@localhost>
Date:   Thu, 12 Jan 2006 04:44:25 +0000

no more biting

Diffstat:
Msrc/libframe/frdraw.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/libframe/frdraw.c b/src/libframe/frdraw.c @@ -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);