Skip to content

Commit

Permalink
Update nuklear.h
Browse files Browse the repository at this point in the history
  • Loading branch information
a1ive committed Nov 16, 2023
1 parent 149e94f commit a9906e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nuklear/nuklear.h
Original file line number Diff line number Diff line change
Expand Up @@ -23892,8 +23892,8 @@ nk_do_button(nk_flags *state, struct nk_command_buffer *out, struct nk_rect r,
/* calculate button content space */
content->x = r.x + style->padding.x + style->border + style->rounding;
content->y = r.y + style->padding.y + style->border + style->rounding;
content->w = r.w - (2 * style->padding.x + style->border + style->rounding*2);
content->h = r.h - (2 * style->padding.y + style->border + style->rounding*2);
content->w = r.w - (2 * (style->padding.x + style->border + style->rounding));
content->h = r.h - (2 * (style->padding.y + style->border + style->rounding));

/* execute button behavior */
bounds.x = r.x - style->touch_padding.x;
Expand Down

0 comments on commit a9906e6

Please sign in to comment.