13
0

Canvas: print item colors in hex when debugging

This commit is contained in:
Paul Davis 2020-07-12 00:00:58 -06:00
parent 86a31e34ba
commit 54de7c70ee

View File

@ -310,7 +310,7 @@ Text::dump (ostream& o) const
Item::dump (o); Item::dump (o);
o << _canvas->indent() << '\t' << " text = " << _text << endl o << _canvas->indent() << '\t' << " text = " << _text << endl
<< _canvas->indent() << " color = " << _color; << _canvas->indent() << " color = 0x" << hex << _color << dec;
o << endl; o << endl;
} }