make LV_USE_BIDI = 0 by default

This commit is contained in:
Gabor Kiss-Vamosi
2019-10-08 16:31:32 +02:00
parent b06ef2620a
commit 34e133586e
2 changed files with 2 additions and 2 deletions

View File

@@ -355,7 +355,7 @@ typedef void * lv_font_user_data_t;
* Allows mixing Left-to-Right and Right-to-Left texts. * Allows mixing Left-to-Right and Right-to-Left texts.
* The direction will be processed according to the Unicode Bidirectioanl Algorithm: * The direction will be processed according to the Unicode Bidirectioanl Algorithm:
* https://www.w3.org/International/articles/inline-bidi-markup/uba-basics*/ * https://www.w3.org/International/articles/inline-bidi-markup/uba-basics*/
#define LV_USE_BIDI 1 #define LV_USE_BIDI 0
#if LV_USE_BIDI #if LV_USE_BIDI
/* Set the default direction. Supported values: /* Set the default direction. Supported values:
* `LV_BIDI_DIR_LTR` Left-to-Right * `LV_BIDI_DIR_LTR` Left-to-Right

View File

@@ -493,7 +493,7 @@
* The direction will be processed according to the Unicode Bidirectioanl Algorithm: * The direction will be processed according to the Unicode Bidirectioanl Algorithm:
* https://www.w3.org/International/articles/inline-bidi-markup/uba-basics*/ * https://www.w3.org/International/articles/inline-bidi-markup/uba-basics*/
#ifndef LV_USE_BIDI #ifndef LV_USE_BIDI
#define LV_USE_BIDI 1 #define LV_USE_BIDI 0
#endif #endif
#if LV_USE_BIDI #if LV_USE_BIDI
/* Set the default direction. Supported values: /* Set the default direction. Supported values: