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);
o << _canvas->indent() << '\t' << " text = " << _text << endl
<< _canvas->indent() << " color = " << _color;
<< _canvas->indent() << " color = 0x" << hex << _color << dec;
o << endl;
}