From: John Lindgren Date: Sun, 7 Dec 2025 05:12:27 +0000 (-0500) Subject: osd-classic: initialize struct fields in order X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=10a3281322e857034c1e65494bc1f3a1d0097386;p=proto%2Flabwc.git osd-classic: initialize struct fields in order --- diff --git a/src/cycle/osd-classic.c b/src/cycle/osd-classic.c index 9acf3064..944b9063 100644 --- a/src/cycle/osd-classic.c +++ b/src/cycle/osd-classic.c @@ -193,9 +193,9 @@ cycle_osd_classic_create(struct output *output) /* Highlight around selected window's item */ struct lab_scene_rect_options highlight_opts = { .border_colors = (float *[1]) {active_border_color}, - .bg_color = active_bg_color, .nr_borders = 1, .border_width = switcher_theme->item_active_border_width, + .bg_color = active_bg_color, .width = w - 2 * padding, .height = switcher_theme->item_height, };