diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-10-29 08:05:07 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-10-29 08:05:07 -0400 |
commit | 46fc53896c67eaca25da0876ea7ee8160410fdd8 (patch) | |
tree | 5d7da21240e252d98571d1e292c58b4ebdaedc36 /pango/pango-attributes.h | |
parent | c09f70381d473fa4ac9e622ef42cc0479a095dc1 (diff) | |
download | pango-46fc53896c67eaca25da0876ea7ee8160410fdd8.tar.gz |
Flesh out some doc comments
Add some missing details about new enumerations
and run baselines.
Diffstat (limited to 'pango/pango-attributes.h')
-rw-r--r-- | pango/pango-attributes.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/pango/pango-attributes.h b/pango/pango-attributes.h index 982987f8..51b9b077 100644 --- a/pango/pango-attributes.h +++ b/pango/pango-attributes.h @@ -232,6 +232,7 @@ typedef enum { /** * PangoBaselineShift: + * @PANGO_BASELINE_SHIFT_NONE: Leave the baseline unchanged * @PANGO_BASELINE_SHIFT_SUPERSCRIPT: Shift the baseline to the superscript position, * relative to the previous run * @PANGO_BASELINE_SHIFT_SUBSCRIPT: Shift the baseline to the subscript position, @@ -249,8 +250,12 @@ typedef enum { /** * PangoFontScale: - * @PANGO_FONT_SCALE_SUPERSCRIPT: - * @PANGO_FONT_SCALE_SUBSCRIPT: + * @PANGO_FONT_SCALE_NONE: Leave the font size unchanged + * @PANGO_FONT_SCALE_SUPERSCRIPT: Change the font to a size suitable for superscripts + * @PANGO_FONT_SCALE_SUBSCRIPT: Change the font to a size suitable for subscripts + * + * An enumeration that affects font sizes for superscript + * and subscript positioning. * * Since: 1.50 */ |