Merge pull request #959 from dorgnarg/fix-section-css-classes
Fix for group module selectors when bar is vertical
This commit is contained in:
commit
f233d27b78
|
@ -370,9 +370,6 @@ waybar::Bar::Bar(struct waybar_output* w_output, const Json::Value& w_config)
|
||||||
window.get_style_context()->add_class(output->name);
|
window.get_style_context()->add_class(output->name);
|
||||||
window.get_style_context()->add_class(config["name"].asString());
|
window.get_style_context()->add_class(config["name"].asString());
|
||||||
window.get_style_context()->add_class(config["position"].asString());
|
window.get_style_context()->add_class(config["position"].asString());
|
||||||
left_.get_style_context()->add_class("modules-left");
|
|
||||||
center_.get_style_context()->add_class("modules-center");
|
|
||||||
right_.get_style_context()->add_class("modules-right");
|
|
||||||
|
|
||||||
if (config["layer"] == "top") {
|
if (config["layer"] == "top") {
|
||||||
layer_ = bar_layer::TOP;
|
layer_ = bar_layer::TOP;
|
||||||
|
@ -390,6 +387,10 @@ waybar::Bar::Bar(struct waybar_output* w_output, const Json::Value& w_config)
|
||||||
vertical = true;
|
vertical = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
left_.get_style_context()->add_class("modules-left");
|
||||||
|
center_.get_style_context()->add_class("modules-center");
|
||||||
|
right_.get_style_context()->add_class("modules-right");
|
||||||
|
|
||||||
uint32_t height = config["height"].isUInt() ? config["height"].asUInt() : 0;
|
uint32_t height = config["height"].isUInt() ? config["height"].asUInt() : 0;
|
||||||
uint32_t width = config["width"].isUInt() ? config["width"].asUInt() : 0;
|
uint32_t width = config["width"].isUInt() ? config["width"].asUInt() : 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue