remove unused call to std::min(), dangling from commit ea0524177
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user