--- config.def.h | 3 +++ sent.c | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/config.def.h b/config.def.h index 60eb376..25d89e0 100644 --- a/config.def.h +++ b/config.def.h _AT_@ -19,6 +19,9 @@ static const float linespacing = 1.4; static const float usablewidth = 0.75; static const float usableheight = 0.75; +/* height of the presentation progress bar */ +static const int progressheight = 5; + static Mousekey mshortcuts[] = { /* button function argument */ { Button1, advance, {.i = +1} }, diff --git a/sent.c b/sent.c index c50a572..046466e 100644 --- a/sent.c +++ b/sent.c _AT_@ -533,6 +533,12 @@ xdraw() 0, slides[idx].lines[i], 0); + if (idx != 0 && progressheight != 0) { + drw_rect(d, + 0, xw.h - progressheight, + (xw.w * idx)/(slidecount - 1), progressheight, + 1, 0); + } drw_map(d, xw.win, 0, 0, xw.w, xw.h); } else { if (!(im->state & SCALED)) -- 2.15.1Received on Fri Jan 05 2018 - 00:58:18 CET
This archive was generated by hypermail 2.3.0 : Fri Jan 05 2018 - 01:00:26 CET