really remove unused call to std::min (correct fix for 25114f)

This commit is contained in:
Ben Loftis
2025-04-07 08:43:44 -05:00
parent b58abd5bf9
commit 0b15408297

View File

@@ -280,7 +280,6 @@ EditorSummary::render (Cairo::RefPtr<Cairo::Context> const& ctx, cairo_rectangle
}
int32_t width = _view_rectangle_x.second - _view_rectangle_x.first;
width = std::min (8, width);
cairo_rectangle (cr, _view_rectangle_x.first, 0, width, get_height ());
cairo_set_source_rgba (cr, 1, 1, 1, 0.15);
cairo_fill (cr);