mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 15:00:51 +01:00
modules/console: Adjust width of state root node id in output.
This commit is contained in:
parent
7d6baec6b9
commit
99553dd7e7
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue