diff options
author | Joel Bodenmann <joel@seriouslyembedded.com> | 2015-12-19 00:56:53 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@seriouslyembedded.com> | 2015-12-19 00:56:53 +0100 |
commit | 0211a32e1f6832629c250434f86d25003da2a9be (patch) | |
tree | e072dd2042e48ddb6720301f40af9d501766e70d /src/gwin/gwin_widget.c | |
parent | 185c970da933c07c62e152b0c0d61847e6100769 (diff) | |
download | uGFX-0211a32e1f6832629c250434f86d25003da2a9be.tar.gz uGFX-0211a32e1f6832629c250434f86d25003da2a9be.tar.bz2 uGFX-0211a32e1f6832629c250434f86d25003da2a9be.zip |
Fixing 'progress' color of built-in widget styles
Diffstat (limited to 'src/gwin/gwin_widget.c')
-rw-r--r-- | src/gwin/gwin_widget.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gwin/gwin_widget.c b/src/gwin/gwin_widget.c index b5095521..38c98903 100644 --- a/src/gwin/gwin_widget.c +++ b/src/gwin/gwin_widget.c @@ -36,7 +36,7 @@ const GWidgetStyle WhiteWidgetStyle = { HTML2COLOR(0x000000), // text HTML2COLOR(0x404040), // edge HTML2COLOR(0xE0E0E0), // fill - HTML2COLOR(0xE0E0E0) // progress - inactive area + HTML2COLOR(0x00E000) // progress - active area }, // disabled color set @@ -66,7 +66,7 @@ const GWidgetStyle BlackWidgetStyle = { HTML2COLOR(0xC0C0C0), // text HTML2COLOR(0xC0C0C0), // edge HTML2COLOR(0x606060), // fill - HTML2COLOR(0x404040) // progress - inactive area + HTML2COLOR(0x008000) // progress - active area }, // disabled color set |