diff options
author | Michael Pavone <pavone@retrodev.com> | 2019-04-25 21:54:47 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2019-04-25 21:54:47 -0700 |
commit | 7cacd261fab7170dfb0475354ac3975441f2dca5 (patch) | |
tree | 433a2f5274a8286eddea588f05f5885dc86aa08f /nuklear_ui/blastem_nuklear.c | |
parent | 91b8de341011783e7f6d4e109476400757bb7c2d (diff) |
Minor improvements to keyboard navigation
Diffstat (limited to 'nuklear_ui/blastem_nuklear.c')
-rw-r--r-- | nuklear_ui/blastem_nuklear.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nuklear_ui/blastem_nuklear.c b/nuklear_ui/blastem_nuklear.c index a237f33..ed8d86e 100644 --- a/nuklear_ui/blastem_nuklear.c +++ b/nuklear_ui/blastem_nuklear.c @@ -2076,6 +2076,10 @@ static void style_init(void) .r = 255, .g = 128, .b = 0, .a = 255 }; context->style.checkbox.cursor_hover = context->style.checkbox.cursor_normal; + context->style.property.inc_button.text_hover = (struct nk_color){ + .r = 255, .g = 128, .b = 0, .a = 255 + }; + context->style.property.dec_button.text_hover = context->style.property.inc_button.text_hover; } static void context_created(void) |