diff options
author | Matthias Clasen <mclasen@redhat.com> | 2017-09-18 18:10:08 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2017-09-18 18:10:08 -0400 |
commit | f87dc24867dd54b28d5368925d11203baefd5fb8 (patch) | |
tree | 33a914c97851f2d3237ef605531b344ba717b0d8 /gtk/gtkcssshorthandpropertyimpl.c | |
parent | 92398bb1bbae85ead39e9579b09f86649df7aeb1 (diff) | |
download | gtk+-f87dc24867dd54b28d5368925d11203baefd5fb8.tar.gz |
Fix a typo
The property is called font-variant-alternates, not -alternatives.
Correct this everywhere.
Diffstat (limited to 'gtk/gtkcssshorthandpropertyimpl.c')
-rw-r--r-- | gtk/gtkcssshorthandpropertyimpl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcssshorthandpropertyimpl.c b/gtk/gtkcssshorthandpropertyimpl.c index c2081f48cb..40b96c6a1d 100644 --- a/gtk/gtkcssshorthandpropertyimpl.c +++ b/gtk/gtkcssshorthandpropertyimpl.c @@ -1272,7 +1272,7 @@ _gtk_css_shorthand_property_init_properties (void) const char *animation_subproperties[] = { "animation-name", "animation-iteration-count", "animation-duration", "animation-delay", "animation-timing-function", "animation-direction", "animation-fill-mode", NULL }; const char *text_decoration_subproperties[] = { "text-decoration-line", "text-decoration-style", "text-decoration-color", NULL }; - const char *font_variant_subproperties[] = { "font-variant-ligatures", "font-variant-position", "font-variant-caps", "font-variant-numeric", "font-variant-alternatives", "font-variant-east-asian", NULL }; + const char *font_variant_subproperties[] = { "font-variant-ligatures", "font-variant-position", "font-variant-caps", "font-variant-numeric", "font-variant-alternates", "font-variant-east-asian", NULL }; const char **all_subproperties; |