aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Hannam <andrewh@inmarket.com.au>2013-04-01 20:41:06 -0700
committerAndrew Hannam <andrewh@inmarket.com.au>2013-04-01 20:41:06 -0700
commitb5dceeead44b0b825ee2ef7d2d7943bec8200e30 (patch)
tree1f2a2daef544584dfb5cf64fba39c0d3da3a7d6a /src
parent285f1977ed0cddc478a59a1382054b88cc91fc63 (diff)
parent939ca6e1d2fbdb352f6d04fc19aa94c6cfbc4416 (diff)
downloaduGFX-b5dceeead44b0b825ee2ef7d2d7943bec8200e30.tar.gz
uGFX-b5dceeead44b0b825ee2ef7d2d7943bec8200e30.tar.bz2
uGFX-b5dceeead44b0b825ee2ef7d2d7943bec8200e30.zip
Merge pull request #22 from Tectu/master
Merge Tectu Changes
Diffstat (limited to 'src')
-rw-r--r--src/gwin/button.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gwin/button.c b/src/gwin/button.c
index 519dd1fe..bec738b4 100644
--- a/src/gwin/button.c
+++ b/src/gwin/button.c
@@ -48,12 +48,13 @@ static const GButtonDrawStyle GButtonDefaultStyleUp = {
HTML2COLOR(0x404040), // color_up_edge;
HTML2COLOR(0xE0E0E0), // color_up_fill;
HTML2COLOR(0x000000), // color_up_txt;
- };
+};
+
static const GButtonDrawStyle GButtonDefaultStyleDown = {
HTML2COLOR(0x404040), // color_dn_edge;
HTML2COLOR(0x808080), // color_dn_fill;
HTML2COLOR(0x404040), // color_dn_txt;
- };
+};
// Process an event callback
static void gwinButtonCallback(void *param, GEvent *pe) {