efl/src
Ali Alzyod 8143b81dd6 evas_object_textblock: treat variation sequence as single run
Summary:
Variation sequence treated as a single run, if we found one, we keep looking adding to the same  run, but if it is not, then we need to start a new one.

Before:
{F3826735}

After:
{F3826736}

Test Plan:
```
#include <stdio.h>
#include <Elementary.h>
/*
gcc -o example test.c `pkg-config --cflags --libs elementary`
*/

EAPI_MAIN int
elm_main(int argc EINA_UNUSED, char **argv EINA_UNUSED)
{
   Evas_Object *win, *en;

   elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED);

   win = elm_win_util_standard_add("emoji-example", "emoji-example");
   elm_win_autodel_set(win, EINA_TRUE);

   en = elm_entry_add(win);
   elm_entry_scrollable_set(en, EINA_TRUE);
   evas_object_size_hint_weight_set(en, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
   evas_object_size_hint_align_set(en, EVAS_HINT_FILL, EVAS_HINT_FILL);

   elm_object_text_set(en, "<font_size=25>&#x262a;&#x262a;&#xfe0f;&#x262a;가</font_size>");

   evas_object_show(en);

   elm_object_content_set(win, en);
   evas_object_resize(win, 400, 200);
   evas_object_show(win);

   elm_run();

   return 0;
}
ELM_MAIN()
```

Reviewers: woohyun, bowonryu

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Maniphest Tasks: T8542

Differential Revision: https://phab.enlightenment.org/D11096
2020-01-23 16:21:22 +09:00
..
benchmarks benchmarks: increase timeout value for running elementary benchmarks 2019-12-18 09:15:51 +01:00
bin efl_ui_spotlight: rename Stack_Manager to Fade_Manager 2020-01-23 12:55:16 +09:00
bindings csharp: cleanup concrete class 2020-01-23 07:30:14 +09:00
edje_external
examples efl_ui_spotlight: rename Stack_Manager to Fade_Manager 2020-01-23 12:55:16 +09:00
generic emotion & evas: remove gstreamer 0.10 support 2019-12-04 12:21:25 -08:00
lib evas_object_textblock: treat variation sequence as single run 2020-01-23 16:21:22 +09:00
modules elm win + ecore evas - fix csd stuff like base size and min sizing 2020-01-18 00:14:58 +00:00
scripts scripts - eina - remove eina-bench-cmp as its disbaled from install 2020-01-06 16:36:31 +00:00
static_libs vector lottie: update shape layer order properly. 2019-12-31 15:04:08 +09:00
tests efl_ui_spotlight: rename Stack_Manager to Fade_Manager 2020-01-23 12:55:16 +09:00
wayland_protocol