mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-15 04:27:52 -05: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
|
||||
color_dim_for_search(pixman_color_t *color)
|
||||
{
|
||||
color->red /= 3;
|
||||
color->green /= 3;
|
||||
color->blue /= 3;
|
||||
color->red /= 2;
|
||||
color->green /= 2;
|
||||
color->blue /= 2;
|
||||
}
|
||||
|
||||
static inline int
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue