diff options
author | inmarket <andrewh@inmarket.com.au> | 2015-02-14 09:16:28 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2015-02-14 09:16:28 +1000 |
commit | 7c7459f1d2a786ae24d895e239f683b17ed6f4b3 (patch) | |
tree | 42530490803ea6d52eea5b10087c99f47850ed78 /src | |
parent | e14fb8cfa091a1f0506c0607859e5955ea09b247 (diff) | |
download | uGFX-7c7459f1d2a786ae24d895e239f683b17ed6f4b3.tar.gz uGFX-7c7459f1d2a786ae24d895e239f683b17ed6f4b3.tar.bz2 uGFX-7c7459f1d2a786ae24d895e239f683b17ed6f4b3.zip |
Toggle fixes.
Diffstat (limited to 'src')
-rw-r--r-- | src/gwin/gwin_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gwin/gwin_list.c b/src/gwin/gwin_list.c index 265053e1..b5bb531d 100644 --- a/src/gwin/gwin_list.c +++ b/src/gwin/gwin_list.c @@ -229,7 +229,7 @@ static void gwinListDefaultDraw(GWidgetObject* gw, void* param); qix = 0; for (i = 0; qi; qix = qi, qi = gfxQueueASyncNext(qi), i++) { - if ((qi2li->flags & GLIST_FLG_SELECTED)) + if ((qi2li->flags & GLIST_FLG_SELECTED)) { if (qix) { qi2li->flags &=~ GLIST_FLG_SELECTED; qix2li->flags |= GLIST_FLG_SELECTED; |