mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
yet another case of misplaced parentheses during the removal of boost::optional from Canvas
This commit is contained in:
parent
6a823402e6
commit
484c3316d6
1 changed files with 1 additions and 1 deletions
|
|
@ -198,7 +198,7 @@ Canvas::item_visual_property_changed (Item* item)
|
||||||
{
|
{
|
||||||
Rect bbox = item->bounding_box ();
|
Rect bbox = item->bounding_box ();
|
||||||
if (bbox) {
|
if (bbox) {
|
||||||
if (item->item_to_window (bbox.intersection (visible_area ()))) {
|
if (item->item_to_window (bbox).intersection (visible_area ())) {
|
||||||
queue_draw_item_area (item, bbox);
|
queue_draw_item_area (item, bbox);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue