We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9acc1f commit 1e481b7Copy full SHA for 1e481b7
src/main.cpp
@@ -109,7 +109,7 @@ int main(int argc, char* argv[]) {
109
110
std::signal(SIGUSR1, SIG_IGN);
111
std::signal(SIGUSR2, SIG_IGN);
112
- std::signal(SIGINT, SIG_IGN);
+ std::signal(SIGINT, SIG_IGN);
113
114
delete client;
115
return ret;
src/modules/temperature.cpp
@@ -77,7 +77,7 @@ auto waybar::modules::Temperature::update() -> void {
77
} else if (warning) {
78
format = config_["format-warning"].isString() ? config_["format-warning"].asString() : format;
79
label_.get_style_context()->add_class("warning");
80
- } else {
+ } else {
81
label_.get_style_context()->remove_class("critical");
82
label_.get_style_context()->remove_class("warning");
83
}
0 commit comments