bar: fix indentation of height type warning

This commit is contained in:
Alex
2026-07-03 21:49:25 +02:00
parent b88f88b457
commit 8f7ed880c4
+1 -1
View File
@@ -173,7 +173,7 @@ waybar::Bar::Bar(struct waybar_output* w_output, const Json::Value& w_config)
}
if (config.isMember("height") && !config["height"].isUInt()) {
spdlog::warn("Invalid type for 'height', expected unsigned integer");
spdlog::warn("Invalid type for 'height', expected unsigned integer");
}
height_ = config["height"].isUInt() ? config["height"].asUInt() : 0;