Merge pull request #652 from SchelZ/master

Fix rounding of panels
This commit is contained in:
Rob Loach 2024-06-22 22:24:06 -04:00 committed by GitHub
commit aaee3007ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -309,7 +309,7 @@ nk_panel_begin(struct nk_context *ctx, const char *title, enum nk_panel_type pan
nk_draw_nine_slice(out, body, &style->window.fixed_background.data.slice, nk_white);
break;
case NK_STYLE_ITEM_COLOR:
nk_fill_rect(out, body, 0, style->window.fixed_background.data.color);
nk_fill_rect(out, body, style->window.rounding, style->window.fixed_background.data.color);
break;
}
}
@ -505,7 +505,7 @@ nk_panel_end(struct nk_context *ctx)
: (window->bounds.y + window->bounds.h));
struct nk_rect b = window->bounds;
b.h = padding_y - window->bounds.y;
nk_stroke_rect(out, b, 0, layout->border, border_color);
nk_stroke_rect(out, b, style->window.rounding, layout->border, border_color);
}
/* scaler */