change the min width of the indicator to 3 and use the actual height of the handle
This commit is contained in:
parent
a95a364b9a
commit
e2389fab78
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue