mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 19:38:01 +03:00
swaynag: add details background option
Adds a new config option for details background for swaynag issue/#5673
This commit is contained in:
parent
afa890e8e9
commit
eb1c09030e
6 changed files with 24 additions and 2 deletions
|
@ -37,7 +37,7 @@ static void render_details_scroll_button(cairo_t *cairo,
|
|||
int border = swaynag->type->button_border_thickness * swaynag->scale;
|
||||
int padding = swaynag->type->button_padding * swaynag->scale;
|
||||
|
||||
cairo_set_source_u32(cairo, swaynag->type->border);
|
||||
cairo_set_source_u32(cairo, swaynag->type->details_background);
|
||||
cairo_rectangle(cairo, button->x, button->y,
|
||||
button->width, button->height);
|
||||
cairo_fill(cairo);
|
||||
|
@ -153,7 +153,7 @@ static uint32_t render_detailed(cairo_t *cairo, struct swaynag *swaynag,
|
|||
&swaynag->details.button_down);
|
||||
}
|
||||
|
||||
cairo_set_source_u32(cairo, swaynag->type->border);
|
||||
cairo_set_source_u32(cairo, swaynag->type->details_background);
|
||||
cairo_rectangle(cairo, swaynag->details.x, swaynag->details.y,
|
||||
swaynag->details.width, swaynag->details.height);
|
||||
cairo_fill(cairo);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue