Skip to content

Commit 74a12af

Browse files
committed
Rebuild nuklear.h
1 parent aaee300 commit 74a12af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nuklear.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -19903,7 +19903,7 @@ nk_panel_begin(struct nk_context *ctx, const char *title, enum nk_panel_type pan
1990319903
nk_draw_nine_slice(out, body, &style->window.fixed_background.data.slice, nk_white);
1990419904
break;
1990519905
case NK_STYLE_ITEM_COLOR:
19906-
nk_fill_rect(out, body, 0, style->window.fixed_background.data.color);
19906+
nk_fill_rect(out, body, style->window.rounding, style->window.fixed_background.data.color);
1990719907
break;
1990819908
}
1990919909
}
@@ -20099,7 +20099,7 @@ nk_panel_end(struct nk_context *ctx)
2009920099
: (window->bounds.y + window->bounds.h));
2010020100
struct nk_rect b = window->bounds;
2010120101
b.h = padding_y - window->bounds.y;
20102-
nk_stroke_rect(out, b, 0, layout->border, border_color);
20102+
nk_stroke_rect(out, b, style->window.rounding, layout->border, border_color);
2010320103
}
2010420104

2010520105
/* scaler */

0 commit comments

Comments
 (0)