From fe464bf1dd1ea1b495ef49b92e26b17ef8680974 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 30 Dec 2013 16:58:28 +0100 Subject: [PATCH] remove cruft --- gtk2_ardour/processor_box.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc index 99ba5c5f1a..011d2226f4 100644 --- a/gtk2_ardour/processor_box.cc +++ b/gtk2_ardour/processor_box.cc @@ -690,7 +690,6 @@ PluginInsertProcessorEntry::SplittingIcon::on_expose_event (GdkEventExpose* ev) cairo_set_line_cap (cr, CAIRO_LINE_CAP_BUTT); for (uint32_t i = 2; i < _branches; ++i) { - //const float si_b = rintf((width * .2f) + (i - 1.f) * width * .6f / (_branches - 1.f)) + .5f; const float si_b = rintf(width * (.2f + .6f * (i - 1.f) / (_branches - 1.f))) + .5f; cairo_move_to (cr, si_b, height); cairo_line_to (cr, si_b, si_m);