remove unused call to std::min(), dangling from commit ea0524177

This commit is contained in:
Paul Davis 2025-04-01 14:55:10 -06:00
parent fad3c32267
commit 25114fee0e

View file

@ -280,7 +280,7 @@ EditorSummary::render (Cairo::RefPtr<Cairo::Context> const& ctx, cairo_rectangle
}
int32_t width = _view_rectangle_x.second - _view_rectangle_x.first;
std::min(8, width);
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);