summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hirt <hirt.danny@gmail.com>2018-02-01 19:24:44 +0200
committerDaniel Hirt <hirt.danny@gmail.com>2018-02-01 19:24:44 +0200
commita89c9e037aeda8cddc132072675a5bbdea089ad7 (patch)
tree327968e3797e53cc22bbd07e76ddf3182811570e
parenta44ae48df811ff2bd085da86db1688c0f387efc4 (diff)
downloadefl-a89c9e037aeda8cddc132072675a5bbdea089ad7.tar.gz
Ui layout: fix another text retrieval line of code
This is a follow-up to a44ae48df811ff2bd085da86db1688c0f387efc4.Need to undo the markup_get call, so that the correct code path (_efl_ui_layout_text_set) is used. Legacy checks are in that code path. ref T6642
-rw-r--r--src/lib/elementary/efl_ui_layout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/efl_ui_layout.c b/src/lib/elementary/efl_ui_layout.c
index b9ebb6562a..6f15bb0629 100644
--- a/src/lib/elementary/efl_ui_layout.c
+++ b/src/lib/elementary/efl_ui_layout.c
@@ -2499,7 +2499,7 @@ elm_layout_text_get(const Eo *obj, const char *part)
else if (!_elm_layout_part_aliasing_eval(obj, &part, EINA_TRUE))
return NULL;
- return efl_text_markup_get(efl_part(obj, part));
+ return efl_text_get(efl_part(obj, part));
}
EAPI Eina_Bool