summaryrefslogtreecommitdiff
path: root/gtk/gtkcssshorthandpropertyimpl.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2017-09-17 21:17:30 -0400
committerMatthias Clasen <mclasen@redhat.com>2017-09-17 21:17:30 -0400
commitd0cae3ecba067cfbe3c93e3a60cc4b39cdbee7cf (patch)
tree5038bd1cdc567ab0f0b305cf46bed614e4c2bdde /gtk/gtkcssshorthandpropertyimpl.c
parentd3198536a4dd4c7b234e92fd4a8a26d7162052db (diff)
downloadgtk+-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.c4
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 };