mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-09 15:15:41 +01:00
remove unused call to std::min(), dangling from commit ea0524177
This commit is contained in:
parent
fad3c32267
commit
25114fee0e
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue