diff options
author | Matthias Clasen <mclasen@redhat.com> | 2017-09-17 21:17:30 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2017-09-17 21:17:30 -0400 |
commit | d0cae3ecba067cfbe3c93e3a60cc4b39cdbee7cf (patch) | |
tree | 5038bd1cdc567ab0f0b305cf46bed614e4c2bdde /gtk/gtkcssshorthandpropertyimpl.c | |
parent | d3198536a4dd4c7b234e92fd4a8a26d7162052db (diff) | |
download | gtk+-d0cae3ecba067cfbe3c93e3a60cc4b39cdbee7cf.tar.gz |
Fix the -gtk-outline-radius shorthand
It needs to refer to the -gtk-prefixed subproperties now.
Diffstat (limited to 'gtk/gtkcssshorthandpropertyimpl.c')
-rw-r--r-- | gtk/gtkcssshorthandpropertyimpl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcssshorthandpropertyimpl.c b/gtk/gtkcssshorthandpropertyimpl.c index 7562d0952a..845e31b308 100644 --- a/gtk/gtkcssshorthandpropertyimpl.c +++ b/gtk/gtkcssshorthandpropertyimpl.c @@ -1045,8 +1045,8 @@ _gtk_css_shorthand_property_init_properties (void) "border-top-color", "border-right-color", "border-bottom-color", "border-left-color", "border-image-source", "border-image-slice", "border-image-width", "border-image-repeat", NULL }; const char *outline_subproperties[] = { "outline-width", "outline-style", "outline-color", NULL }; - const char *outline_radius_subproperties[] = { "outline-top-left-radius", "outline-top-right-radius", - "outline-bottom-right-radius", "outline-bottom-left-radius", NULL }; + const char *outline_radius_subproperties[] = { "-gtk-outline-top-left-radius", "-gtk-outline-top-right-radius", + "-gtk-outline-bottom-right-radius", "-gtk-outline-bottom-left-radius", NULL }; const char *background_subproperties[] = { "background-image", "background-position", "background-size", "background-repeat", "background-clip", "background-origin", "background-color", NULL }; const char *transition_subproperties[] = { "transition-property", "transition-duration", "transition-delay", "transition-timing-function", NULL }; |