mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-01 07:15:32 -04:00
render: don't dim so much when in search mode
This commit is contained in:
parent
23b2eed409
commit
03bdb40bd9
1 changed files with 3 additions and 3 deletions
6
render.c
6
render.c
|
|
@ -235,9 +235,9 @@ color_dim(pixman_color_t *color)
|
||||||
static inline void
|
static inline void
|
||||||
color_dim_for_search(pixman_color_t *color)
|
color_dim_for_search(pixman_color_t *color)
|
||||||
{
|
{
|
||||||
color->red /= 3;
|
color->red /= 2;
|
||||||
color->green /= 3;
|
color->green /= 2;
|
||||||
color->blue /= 3;
|
color->blue /= 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int
|
static inline int
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue