Fixing color in gwin widgets demo

ugfx_release_2.6
Joel Bodenmann 2014-08-08 14:04:49 +02:00
parent 14f372bef8
commit 052a8e033c
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ static void createWidgets(void) {
wi.g.width = ScrWidth/2 - 2*border;
ghConsole = gwinConsoleCreate(0, &wi.g);
gwinSetColor(ghConsole, Black);
gwinSetBgColor(ghConsole, 0xF0F0F0);
gwinSetBgColor(ghConsole, HTML2COLOR(0xF0F0F0));
// Buttons
wi.g.parent = ghPgButtons;