mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +01:00
Extend the y range of the simplerect redraw request in one case to prevent bits being left on the canvas. Fixes #3981.
git-svn-id: svn://localhost/ardour2/branches/3.0@9367 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
77d5a80155
commit
1ae3214c0d
1 changed files with 1 additions and 1 deletions
|
|
@ -323,7 +323,7 @@ gnome_canvas_simplerect_reset_bounds (GnomeCanvasItem *item)
|
|||
double start_x = MIN (item->x2, old_x2);
|
||||
double end_x = MAX (item->x2, old_x2);
|
||||
|
||||
gnome_canvas_request_redraw (item->canvas, start_x - 0.5, item->y1, end_x + 1.5, item->y2);
|
||||
gnome_canvas_request_redraw (item->canvas, start_x - 0.5, item->y1, end_x + 1.5, item->y2 + 0.5);
|
||||
return;
|
||||
|
||||
} else if (item->x2 == old_x2) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue