GDISP_NEED_TEXT and GDISP_NEED_ELLIPSE defaults to FALSE now. The former requires to enable at least one font which may not be needed (it sucks if compiling the basic examples) and the latter is barely needed anyway

ugfx_release_2.6
Joel Bodenmann 2013-10-28 00:09:34 +01:00 committed by inmarket
parent 7c3b7270fc
commit a1d453e46f
1 changed files with 2 additions and 2 deletions

View File

@ -79,11 +79,11 @@
#endif
/**
* @brief Are text functions needed.
* @details Defaults to TRUE
* @details Defaults to FALSE
* @note You must also define at least one font.
*/
#ifndef GDISP_NEED_TEXT
#define GDISP_NEED_TEXT TRUE
#define GDISP_NEED_TEXT FALSE
#endif
/**
* @brief Are circle functions needed.