diff options
author | ali <ali198724@gmail.com> | 2019-12-30 10:56:37 +0900 |
---|---|---|
committer | WooHyun Jung <wh0705.jung@samsung.com> | 2019-12-30 10:56:37 +0900 |
commit | 7b105b33bb12321e970f01ae76e02b6efa22e61d (patch) | |
tree | cb7d52f3bfba34d625a215f0922bd7035856548e /src/lib/efl | |
parent | 895f64f33c2156ae3ff687bcb1621b5bef2bb194 (diff) |
efl.text.style: strikethrough_type & Background_type enum rename
Summary:
rename **solid color** to **single**
rename **disabled** to **none**
Reviewers: woohyun, segfaultxavi
Reviewed By: segfaultxavi
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Maniphest Tasks: T7942, T7941
Differential Revision: https://phab.enlightenment.org/D10974
Diffstat (limited to 'src/lib/efl')
-rw-r--r-- | src/lib/efl/interfaces/efl_text_style.eo | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/efl/interfaces/efl_text_style.eo b/src/lib/efl/interfaces/efl_text_style.eo index 9fdd1e05f2..7ecd7afeb4 100644 --- a/src/lib/efl/interfaces/efl_text_style.eo +++ b/src/lib/efl/interfaces/efl_text_style.eo | |||
@@ -1,7 +1,7 @@ | |||
1 | enum @beta Efl.Text_Style_Background_Type | 1 | 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 | none = 0, [[Do not use background.]] |
5 | solid_color, [[Use solid color background.]] | 5 | solid_color, [[Use solid color background.]] |
6 | 6 | ||
7 | } | 7 | } |
@@ -9,8 +9,8 @@ enum @beta Efl.Text_Style_Background_Type | |||
9 | enum @beta Efl.Text_Style_Strikethrough_Type | 9 | 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 | none = 0, [[Do not use strike-through.]] |
13 | solid_color, [[Use solid color strike-through.]] | 13 | single, [[Strikethrough with a single line.]] |
14 | 14 | ||
15 | } | 15 | } |
16 | 16 | ||