diff options
Diffstat (limited to 'x11.c')
| -rw-r--r-- | x11.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -20,8 +20,8 @@ #include "draw.h" struct Window { - xcb_screen_t *screen; xcb_connection_t *connection; + xcb_screen_t *screen; xcb_xrm_database_t *database; xcb_errors_context_t *errors; xcb_drawable_t window; @@ -495,6 +495,9 @@ static void window_paint_corners(Window *win) cairo_t *cr = cairo_create(surface); + // TODO: Fix antialiasing situation + //cairo_set_antialias(cr, CAIRO_ANTIALIAS_GOOD); + cairo_set_antialias(cr, CAIRO_ANTIALIAS_NONE); cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE); |
