0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 04:08:54 +02:00

modules/console: Adjust width of state root node id in output.

This commit is contained in:
Jason Volk 2018-05-17 18:19:22 -07:00
parent 7d6baec6b9
commit 99553dd7e7

View file

@ -3281,7 +3281,7 @@ console_cmd__room__events(opt &out, const string_view &line)
for(; it && limit >= 0; order == 'b'? --it : ++it, --limit) for(; it && limit >= 0; order == 'b'? --it : ++it, --limit)
if(roots) if(roots)
out << std::setw(40) << std::left << it.state_root() out << std::setw(48) << std::left << it.state_root()
<< " " << std::setw(8) << std::left << it.event_idx() << " " << std::setw(8) << std::left << it.event_idx()
<< " " << it.event_id() << " " << it.event_id()
<< std::endl; << std::endl;