0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-16 08:58:20 +02:00

modules/console: Increase column width for event::id hostpart.

This commit is contained in:
Jason Volk 2020-12-10 03:34:35 -08:00
parent c8ab0ce239
commit d104a8ea0d

View file

@ -8413,7 +8413,7 @@ console_cmd__event__refs(opt &out, const string_view &line)
<< " " << std::left << std::setw(45) << trunc(event_id, 45)
<< " " << std::right << std::setw(12) << trunc(reflect(type), 12)
<< " -> " << std::right << std::setw(10) << tgt
<< " " << std::left << std::setw(45) << trunc(tgt_id? string_view{tgt_id}: "<index error>"_sv, 45)
<< " " << std::left << std::setw(60) << trunc(tgt_id? string_view{tgt_id}: "<index error>"_sv, 60)
<< std::endl
;