diff options
author | Stefan Schmidt <stefan@osg.samsung.com> | 2017-05-31 17:19:57 +0200 |
---|---|---|
committer | Stefan Schmidt <stefan@osg.samsung.com> | 2017-06-02 09:21:11 +0200 |
commit | b0d056f291de86aa888e9373243b4bd78b23c32b (patch) | |
tree | dce62c43e1c47a88e1de1bfb70e46e34ecbd7a87 /src/lib/efl/interfaces/efl_text_font.eo | |
parent | bf6050047cfe3318ab6a9e668cd9816ae6f72a6b (diff) |
docs: efl_text_font: add docs for font weight enum
Who comes up with font weight names like extrabold or black? :)
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl/interfaces/efl_text_font.eo | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/lib/efl/interfaces/efl_text_font.eo b/src/lib/efl/interfaces/efl_text_font.eo index 3f4a1ac511..01ce7ddc9c 100644 --- a/src/lib/efl/interfaces/efl_text_font.eo +++ b/src/lib/efl/interfaces/efl_text_font.eo | |||
@@ -2,19 +2,19 @@ | |||
2 | 2 | ||
3 | enum Efl.Text.Font.Weight { | 3 | enum Efl.Text.Font.Weight { |
4 | [[Type of font weight]] | 4 | [[Type of font weight]] |
5 | normal, | 5 | normal, [[Normal font weight]] |
6 | thin, | 6 | thin, [[Thin font weight]] |
7 | ultralight, | 7 | ultralight, [[Ultralight font weight]] |
8 | extralight, | 8 | extralight, [[Extralight font weight]] |
9 | light, | 9 | light, [[Light font weight]] |
10 | book, | 10 | book, [[Book font weight]] |
11 | medium, | 11 | medium, [[Medium font weight]] |
12 | semibold, | 12 | semibold, [[Semibold font weight]] |
13 | bold, | 13 | bold, [[Bold font weight]] |
14 | ultrabold, | 14 | ultrabold, [[Ultrabold font weight]] |
15 | extrabold, | 15 | extrabold, [[Extrabold font weight]] |
16 | black, | 16 | black, [[Black font weight]] |
17 | extrablack, | 17 | extrablack, [[Extrablack font weight]] |
18 | } | 18 | } |
19 | 19 | ||
20 | enum Efl.Text.Font.Width { | 20 | enum Efl.Text.Font.Width { |