mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
items should not round their bounding box when requesting a redraw
This commit is contained in:
parent
9c071cd6ef
commit
27919fec61
1 changed files with 2 additions and 1 deletions
|
|
@ -673,8 +673,9 @@ void
|
||||||
Item::redraw () const
|
Item::redraw () const
|
||||||
{
|
{
|
||||||
if (visible() && _bounding_box && _canvas) {
|
if (visible() && _bounding_box && _canvas) {
|
||||||
_canvas->request_redraw (item_to_window (_bounding_box));
|
_canvas->request_redraw (item_to_window (_bounding_box, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue