Merge pull request #49 from megagrump/master

Fix typo in nk_love_style_push_progress
This commit is contained in:
Kevin Harrison 2020-04-14 17:44:24 -04:00 committed by GitHub
commit d1cfcf2a47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3865,7 +3865,7 @@ static void nk_love_style_push_progress(struct nk_style_progress *style)
NK_LOVE_STYLE_PUSH("border color", color, &style->border_color);
NK_LOVE_STYLE_PUSH("cursor normal", item, &style->cursor_normal);
NK_LOVE_STYLE_PUSH("cursor hover", item, &style->cursor_hover);
NK_LOVE_STYLE_PUSH("cusor active", item, &style->cursor_active);
NK_LOVE_STYLE_PUSH("cursor active", item, &style->cursor_active);
NK_LOVE_STYLE_PUSH("cursor border color", color, &style->cursor_border_color);
NK_LOVE_STYLE_PUSH("rounding", float, &style->rounding);
NK_LOVE_STYLE_PUSH("border", float, &style->border);