Skip to content

Commit

Permalink
Rebuild nuklear.h
Browse files Browse the repository at this point in the history
  • Loading branch information
RobLoach committed Jun 27, 2024
1 parent aaee300 commit 74a12af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nuklear.h
Original file line number Diff line number Diff line change
Expand Up @@ -19903,7 +19903,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;
}
}
Expand Down Expand Up @@ -20099,7 +20099,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 */
Expand Down

0 comments on commit 74a12af

Please sign in to comment.