Skip to content

Commit

Permalink
refactor: avoid useless has_class check
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexays committed Aug 10, 2018
1 parent 9e85c68 commit 4d3879f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/modules/battery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ auto waybar::modules::Battery::update() -> void
charging = true;
}
}
if (charging == true) {
if (charging) {
_label.get_style_context()->add_class("charging");
} else {
_label.get_style_context()->remove_class("charging");
Expand Down
7 changes: 4 additions & 3 deletions src/modules/custom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
waybar::modules::Custom::Custom(std::string name, Json::Value config)
: _name(name), _config(config)
{
_label.get_style_context()->add_class("custom-" + name);
if (!_config["exec"]) {
std::cerr << name + " has no exec path." << std::endl;
return;
Expand Down Expand Up @@ -36,9 +35,11 @@ auto waybar::modules::Custom::update() -> void
}

// Hide label if output is empty
if (output.empty())
if (output.empty()) {
_label.get_style_context()->remove_class("custom-" + _name);
_label.hide();
else {
} else {
_label.get_style_context()->add_class("custom-" + _name);
auto format = _config["format"] ? _config["format"].asString() : "{}";
_label.set_text(fmt::format(format, output));
_label.show();
Expand Down
5 changes: 2 additions & 3 deletions src/modules/pulseaudio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,8 @@ auto waybar::modules::Pulseaudio::update() -> void
if (_muted) {
format =
_config["format-muted"] ? _config["format-muted"].asString() : format;
if (!_label.get_style_context()->has_class("muted"))
_label.get_style_context()->add_class("muted");
} else if (_label.get_style_context()->has_class("muted"))
_label.get_style_context()->add_class("muted");
} else
_label.get_style_context()->remove_class("muted");
_label.set_label(fmt::format(format, _volume));
_label.set_tooltip_text(_desc);
Expand Down
4 changes: 2 additions & 2 deletions src/modules/workspaces.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ auto waybar::modules::Workspaces::update() -> void
} else {
auto styleContext = it->second.get_style_context();
bool isCurrent = node["focused"].asBool();
if (styleContext->has_class("current") && !isCurrent) {
if (!isCurrent) {
styleContext->remove_class("current");
} else if (!styleContext->has_class("current") && isCurrent) {
} else if (isCurrent) {
styleContext->add_class("current");
}
if (hided) {
Expand Down

0 comments on commit 4d3879f

Please sign in to comment.