13
0

canvas: impl of Rectangle::dump()

This commit is contained in:
Paul Davis 2021-07-27 13:25:31 -06:00
parent b2aa14a90b
commit 71fe17a241

View File

@ -311,3 +311,10 @@ Rectangle::set_corner_radius (double r)
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;
}