GRAPHICS: MACGUI: Indicate presence of a table in debug output in MacTextCanvas

This commit is contained in:
Eugene Sandulenko 2023-11-25 16:38:28 -05:00
parent 71b3ba59ee
commit 63c8367ace
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -1379,7 +1379,8 @@ void MacTextCanvas::debugPrint(const char *prefix) {
for (uint i = 0; i < _text.size(); i++) {
if (prefix)
DN(8, "%s: ", prefix);
DN(8, "%2d, %c fi: %d, i: %d ", i, _text[i].paragraphEnd ? '$' : '.', _text[i].firstLineIndent, _text[i].indent);
DN(8, "%2d, %c %c fi: %d, i: %d ", i, _text[i].paragraphEnd ? '$' : '.', _text[i].table ? 'T' : ' ',
_text[i].firstLineIndent, _text[i].indent);
for (uint j = 0; j < _text[i].chunks.size(); j++)
_text[i].chunks[j].debugPrint();