change the min width of the indicator to 3 and use the actual height of the handle

This commit is contained in:
Dana Jansens 2003-10-09 19:44:02 +00:00
parent a95a364b9a
commit e2389fab78

View file

@ -378,7 +378,9 @@ void focus_cycle_draw_indicator()
int x, y, w, h; int x, y, w, h;
int wt, wl, wr, wb; int wt, wl, wr, wb;
wt = wl = wr = wb = MAX(5, ob_rr_theme->handle_height); wt = wl = wr = wb = MAX(3,
ob_rr_theme->handle_height +
ob_rr_theme->bwidth * 2);
x = focus_cycle_target->frame->area.x; x = focus_cycle_target->frame->area.x;
y = focus_cycle_target->frame->area.y; y = focus_cycle_target->frame->area.y;