mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
Proper formatting
This commit is contained in:
parent
14f626d422
commit
e8278431d2
@ -241,9 +241,9 @@ auto waybar::Client::setupConfig(const std::string &config_file) -> void {
|
||||
}
|
||||
std::string str((std::istreambuf_iterator<char>(file)), std::istreambuf_iterator<char>());
|
||||
util::JsonParser parser;
|
||||
Json::Value tmp_config_ = parser.parse(str);
|
||||
Json::Value tmp_config_ = parser.parse(str);
|
||||
if (tmp_config_["include"].isArray()) {
|
||||
for (const auto& include : tmp_config_["include"]) {
|
||||
for (const auto &include : tmp_config_["include"]) {
|
||||
spdlog::info("Including resource file: {}", include.asString());
|
||||
setupConfig(getValidPath({include.asString()}));
|
||||
}
|
||||
@ -252,7 +252,7 @@ auto waybar::Client::setupConfig(const std::string &config_file) -> void {
|
||||
}
|
||||
|
||||
auto waybar::Client::mergeConfig(Json::Value &a_config_, Json::Value &b_config_) -> void {
|
||||
for (const auto& key : b_config_.getMemberNames()) {
|
||||
for (const auto &key : b_config_.getMemberNames()) {
|
||||
if (a_config_[key].type() == Json::objectValue && b_config_[key].type() == Json::objectValue) {
|
||||
mergeConfig(a_config_[key], b_config_[key]);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user