mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 19:56:31 +01:00
canvas: impl of Rectangle::dump()
This commit is contained in:
parent
b2aa14a90b
commit
71fe17a241
1 changed files with 7 additions and 0 deletions
|
|
@ -311,3 +311,10 @@ Rectangle::set_corner_radius (double r)
|
||||||
end_change ();
|
end_change ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
Rectangle::dump (std::ostream & o) const
|
||||||
|
{
|
||||||
|
Item::dump (o);
|
||||||
|
|
||||||
|
o << _canvas->indent() << " outline: w " << outline_width() << " color " << outline_color() << " what 0x" << std::hex << _outline_what << std::dec << endl;
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue