osd: use theme->osd_border_width for focused item

This commit is contained in:
Johan Malm 2023-06-29 17:45:33 +01:00 committed by Johan Malm
parent df53c28a0f
commit b200dd2e7b
4 changed files with 68 additions and 21 deletions

View file

@ -7,6 +7,7 @@
struct wlr_scene_tree;
struct wlr_scene_rect;
struct wlr_fbox;
struct multi_rect {
struct wlr_scene_tree *tree;
@ -44,7 +45,6 @@ void multi_rect_set_size(struct multi_rect *rect, int width, int height);
void set_cairo_color(cairo_t *cairo, float *color);
/* Draws a border with a specified line width */
void draw_cairo_border(cairo_t *cairo, double width, double height,
double line_width);
void draw_cairo_border(cairo_t *cairo, struct wlr_fbox fbox, double line_width);
#endif /* LABWC_GRAPHIC_HELPERS_H */