Home
last modified time | relevance | path

Searched refs:oldtop (Results 1 – 1 of 1) sorted by relevance

/vim-8.2.3635/src/
H A Dgui_at_sb.c347 Position oldtop, oldbot, newtop, newbot; in PaintThumb() local
357 oldtop = sbw->scrollbar.topLoc; in PaintThumb()
358 oldbot = oldtop + sbw->scrollbar.shownLength; in PaintThumb()
363 if (newtop < oldtop) in PaintThumb()
364 FillArea(sbw, newtop, AT_MIN(newbot, oldtop+1),1,0); in PaintThumb()
365 if (newtop > oldtop) in PaintThumb()
366 FillArea(sbw, oldtop, AT_MIN(newtop, oldbot ),0,0); in PaintThumb()
368 FillArea(sbw, AT_MAX(newbot, oldtop), oldbot, 0,0); in PaintThumb()