diff options
author | Ali Alzyod <ali198724@gmail.com> | 2019-12-27 16:10:24 +0900 |
---|---|---|
committer | WooHyun Jung <wh0705.jung@samsung.com> | 2019-12-27 16:10:24 +0900 |
commit | e583b9159e9d9b0bbb5e1bf14be81e5acdc9a98b (patch) | |
tree | 6aca6d837ac7e6ee28d11558dc17c373b50b025d /src/lib/efl | |
parent | 7c71dc4e2df2ac74f121598da44ea872c0a6eaa2 (diff) |
efl_style: rename enums (background,strikthrough) from enabled to solid_color
Reviewers: woohyun, segfaultxavi
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Maniphest Tasks: T7942
Differential Revision: https://phab.enlightenment.org/D10967
Diffstat (limited to 'src/lib/efl')
-rw-r--r-- | src/lib/efl/interfaces/efl_text_style.eo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/efl/interfaces/efl_text_style.eo b/src/lib/efl/interfaces/efl_text_style.eo index 17c209e01d..9fdd1e05f2 100644 --- a/src/lib/efl/interfaces/efl_text_style.eo +++ b/src/lib/efl/interfaces/efl_text_style.eo | |||
@@ -2,7 +2,7 @@ enum @beta Efl.Text_Style_Background_Type | |||
2 | { | 2 | { |
3 | [[Whether to add a background colored rectangle (background) to each line of text or not.]] | 3 | [[Whether to add a background colored rectangle (background) to each line of text or not.]] |
4 | disabled = 0, [[Do not use background.]] | 4 | disabled = 0, [[Do not use background.]] |
5 | enabled, [[Use background.]] | 5 | solid_color, [[Use solid color background.]] |
6 | 6 | ||
7 | } | 7 | } |
8 | 8 | ||
@@ -10,7 +10,7 @@ enum @beta Efl.Text_Style_Strikethrough_Type | |||
10 | { | 10 | { |
11 | [[Whether to add a strike-through decoration to the displayed text or not.]] | 11 | [[Whether to add a strike-through decoration to the displayed text or not.]] |
12 | disabled = 0, [[Do not use strike-through.]] | 12 | disabled = 0, [[Do not use strike-through.]] |
13 | enabled, [[Use strike-through.]] | 13 | solid_color, [[Use solid color strike-through.]] |
14 | 14 | ||
15 | } | 15 | } |
16 | 16 | ||