From 7ad87fdf2b1612e39afdee86bc4645cdfeec8c57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 18 Jul 2019 09:29:36 +0200 Subject: [PATCH] font: remove assert that was only there for debugging --- font.c | 1 - 1 file changed, 1 deletion(-) diff --git a/font.c b/font.c index 74357f9b..3cb5b597 100644 --- a/font.c +++ b/font.c @@ -68,7 +68,6 @@ font_from_name(const char *name) options, fc_hinting ? CAIRO_HINT_STYLE_DEFAULT : CAIRO_HINT_STYLE_NONE); cairo_font_options_set_antialias( options, fc_antialias ? CAIRO_ANTIALIAS_DEFAULT : CAIRO_ANTIALIAS_NONE); - assert(cairo_font_options_get_antialias(options) == CAIRO_ANTIALIAS_NONE); double size; if (FcPatternGetDouble(final_pattern, FC_PIXEL_SIZE, 0, &size)) {