0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-26 00:32:35 +01:00

modules/console: Swap the conf diff columns.

This commit is contained in:
Jason Volk 2019-06-08 00:58:54 -07:00
parent 9fe4d07556
commit 5cfac64bee

View file

@ -1428,8 +1428,8 @@ console_cmd__conf__diff(opt &out, const string_view &line)
};
out << std::setw(48) << std::left << "NAME"
<< " | " << std::setw(36) << "DEFAULT"
<< " | " << std::setw(36) << "CURRENT"
<< " | " << std::setw(36) << "DEFAULT"
<< std::endl;
for(const auto &item : conf::items)
@ -1451,8 +1451,8 @@ console_cmd__conf__diff(opt &out, const string_view &line)
continue;
out << std::setw(48) << std::left << item.first
<< " | " << std::setw(36) << default_
<< " | " << std::setw(36) << val
<< " | " << std::setw(36) << default_
<< std::endl;
}