Drop support for one-stop gradients

These have been deprecated for a while. Time to make this an
error for GTK+ 4.
This commit is contained in:
Matthias Clasen 2017-09-17 16:40:45 -04:00
parent 737cae8e10
commit d3727817ff
2 changed files with 6 additions and 8 deletions

View File

@ -384,10 +384,9 @@ gtk_css_image_linear_parse (GtkCssImage *image,
if (linear->stops->len < 2)
{
_gtk_css_parser_error_full (parser,
GTK_CSS_PROVIDER_ERROR_DEPRECATED,
"Using one color stop with %s() is deprecated.",
linear->repeating ? "repeating-linear-gradient" : "linear-gradient");
_gtk_css_parser_error (parser, "%s() needs at least 2 color stops.",
linear->repeating ? "repeating-linear-gradient" : "linear-gradient");
return FALSE;
}
if (!_gtk_css_parser_try (parser, ")", TRUE))

View File

@ -379,10 +379,9 @@ gtk_css_image_radial_parse (GtkCssImage *image,
if (radial->stops->len < 2)
{
_gtk_css_parser_error_full (parser,
GTK_CSS_PROVIDER_ERROR_DEPRECATED,
"Using one color stop with %s() is deprecated.",
radial->repeating ? "repeating-radial-gradient" : "radial-gradient");
_gtk_css_parser_error (parser, "%s() needs at least 2 color stops.",
radial->repeating ? "repeating-radial-gradient" : "radial-gradient");
return FALSE;
}
if (!_gtk_css_parser_try (parser, ")", TRUE))