diff options
author | Andrii Kroitor <an.kroitor@samsung.com> | 2014-06-26 19:34:35 +0900 |
---|---|---|
committer | ChunEon Park <hermet@hermet.pe.kr> | 2014-06-26 19:38:12 +0900 |
commit | 58723c7202912dfe709d0d2142ade12c5a343ab9 (patch) | |
tree | 125690df1dc92e673a04874d5df721f0463018f4 | |
parent | b2d99524b7fd4e6ef0933bc64443d96f25098eec (diff) | |
download | efl-58723c7202912dfe709d0d2142ade12c5a343ab9.tar.gz |
edje: textblock style loading changed
Summary:
Keeping "font=", "font_size=" and "text_class" in tag->value fixes
style loading issues (after saving edj file with edje_edit_save method).
Reviewers: cedric, raster, seoz, Hermet, tasn
CC: reutskiy.v.v, cedric
Differential Revision: https://phab.enlightenment.org/D940
@fix
-rw-r--r-- | src/lib/edje/edje_textblock_styles.c | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/src/lib/edje/edje_textblock_styles.c b/src/lib/edje/edje_textblock_styles.c index d174e4d1eb..5d423f74cf 100644 --- a/src/lib/edje/edje_textblock_styles.c +++ b/src/lib/edje/edje_textblock_styles.c @@ -125,16 +125,13 @@ _edje_format_reparse(Edje_File *edf, const char *str, Edje_Style_Tag **tag_ret) } } } - else /* Otherwise add to tag buffer */ - { - s2 = eina_str_escape(item); - if (s2) - { - if (eina_strbuf_length_get(txt)) eina_strbuf_append(txt, " "); - eina_strbuf_append(txt, s2); - free(s2); - } - } + s2 = eina_str_escape(item); + if (s2) + { + if (eina_strbuf_length_get(txt)) eina_strbuf_append(txt, " "); + eina_strbuf_append(txt, s2); + free(s2); + } free(key); free(val); } |