From ed2aae7ab3b9e99f66bdaaae26320183dfad4664 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20H=C3=B8gsberg?= Date: Mon, 11 Jun 2012 11:23:31 -0400 Subject: [PATCH] clock: Drop transparent background Too hard to read. --- clients/desktop-shell.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/clients/desktop-shell.c b/clients/desktop-shell.c index 4a22f177..03bb6ec4 100644 --- a/clients/desktop-shell.c +++ b/clients/desktop-shell.c @@ -327,14 +327,6 @@ panel_clock_redraw_handler(struct widget *widget, void *data) surface = window_get_surface(clock->panel->window); cr = cairo_create(surface); - cairo_rectangle(cr, allocation.x, allocation.y, - allocation.width, allocation.height); - cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE); - cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 0.1); - cairo_rectangle(cr, allocation.x, allocation.y, 3, 3); - cairo_fill(cr); - - cairo_set_operator(cr, CAIRO_OPERATOR_OVER); cairo_select_font_face(cr, "sans", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);