Merge branch 'master' into fonts

ugfx_release_2.6
inmarket 2013-07-29 16:43:04 +10:00
commit e5b0168d7c
1 changed files with 7 additions and 0 deletions

View File

@ -510,6 +510,13 @@ bool_t ginputCalibrateMouse(uint16_t instance) {
MouseConfig.flags |= FLG_CAL_SAVED;
}
// Clear the screen using the GWIN default background color
#if GFX_USE_GWIN
gdispClear(gwinGetDefaultBgColor());
#else
gdispClear(Black);
#endif
return TRUE;
#endif
}