render: reduce amount of dim while searching scrollback history

This commit is contained in:
Daniel Eklöf 2019-08-29 19:33:25 +02:00
parent 94b4c916ee
commit 2a31c2fbbc
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -72,6 +72,14 @@ pixman_color_dim(pixman_color_t *color)
color->blue /= 2;
}
static inline void
pixman_color_dim_for_search(pixman_color_t *color)
{
color->red /= 3;
color->green /= 3;
color->blue /= 3;
}
static void
draw_bar(const struct terminal *term, pixman_image_t *pix,
const pixman_color_t *color, int x, int y)
@ -205,10 +213,8 @@ render_cell(struct terminal *term, pixman_image_t *pix,
}
if (term->is_searching && !is_selected) {
pixman_color_dim(&fg);
pixman_color_dim(&bg);
pixman_color_dim(&fg);
pixman_color_dim(&bg);
pixman_color_dim_for_search(&fg);
pixman_color_dim_for_search(&bg);
}
struct font *font = attrs_to_font(term, &cell->attrs);