From e2dfc1069885054726e44261cf706c1f24f45635 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 23 Jul 2015 08:35:04 -0400 Subject: [PATCH] thicken up lines of close cross icon --- libs/gtkmm2ext/ardour_icon.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gtkmm2ext/ardour_icon.cc b/libs/gtkmm2ext/ardour_icon.cc index e06d4896da..8508cf3461 100644 --- a/libs/gtkmm2ext/ardour_icon.cc +++ b/libs/gtkmm2ext/ardour_icon.cc @@ -849,7 +849,7 @@ static void icon_close_cross (cairo_t *cr, const int width, const int height, co const double y = height * .5; const double o = .5 + std::min (x, y) * .4; ardour_icon_set_source_rgba (cr, fg_color); - cairo_set_line_width (cr, 1); + cairo_set_line_width (cr, 2.0); cairo_move_to (cr, x-o, y-o); cairo_line_to (cr, x+o, y+o); cairo_move_to (cr, x+o, y-o);