projects
/
platform
/
upstream
/
efl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a6b878
)
edje: fix mistyped code for _color_class_parent_set()
author
Youngbok Shin
<youngb.shin@samsung.com>
Fri, 2 Dec 2016 09:22:58 +0000
(18:22 +0900)
committer
Wonki Kim
<wonki_.kim@samsung.com>
Mon, 2 Jan 2017 07:23:57 +0000
(16:23 +0900)
It caused issue for applying a color to a entry's cursor.
@tizen_fix
Change-Id: I16ed2963cc13c6befd2686c956119036677f8627
src/lib/edje/edje_entry.c
patch
|
blob
|
history
diff --git
a/src/lib/edje/edje_entry.c
b/src/lib/edje/edje_entry.c
index 0d8aec415e6ac679d767e3a5fac5e4b540139702..672c79acc54fcbf06e281b31f5c80796e07ccb95 100644
(file)
--- a/
src/lib/edje/edje_entry.c
+++ b/
src/lib/edje/edje_entry.c
@@
-3102,7
+3102,7
@@
_edje_entry_real_part_init(Edje *ed, Edje_Real_Part *rp, Ecore_IMF_Context *ic)
evas_object_pass_events_set(en->cursor_fg, EINA_TRUE);
_edje_subobj_register(ed, en->cursor_fg);
/* TIZEN_ONLY(20161025): Add color class parent-child relationship with APIs */
- edje_object_color_class_parent_set(en->cursor_
b
g, ed->obj);
+ edje_object_color_class_parent_set(en->cursor_
f
g, ed->obj);
/* END */
}