Skip to content

Commit

Permalink
fix broken clang-format to run pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
TripleTrable committed Oct 30, 2024
1 parent 94883be commit 1fa0a8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ int main(int argc, char* argv[]) {

std::signal(SIGUSR1, SIG_IGN);
std::signal(SIGUSR2, SIG_IGN);
std::signal(SIGINT, SIG_IGN);
std::signal(SIGINT, SIG_IGN);

delete client;
return ret;
Expand Down
2 changes: 1 addition & 1 deletion src/modules/temperature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ auto waybar::modules::Temperature::update() -> void {
} else if (warning) {
format = config_["format-warning"].isString() ? config_["format-warning"].asString() : format;
label_.get_style_context()->add_class("warning");
} else {
} else {
label_.get_style_context()->remove_class("critical");
label_.get_style_context()->remove_class("warning");
}
Expand Down

0 comments on commit 1fa0a8b

Please sign in to comment.