mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
Merge pull request #1485 from LukashonakV/master
Hide/Unhide temperature module when "format*" is empty.
This commit is contained in:
commit
8c6063d181
@ -34,6 +34,14 @@ auto waybar::modules::Temperature::update() -> void {
|
||||
} else {
|
||||
label_.get_style_context()->remove_class("critical");
|
||||
}
|
||||
|
||||
if(format.empty()) {
|
||||
event_box_.hide();
|
||||
return;
|
||||
} else {
|
||||
event_box_.show();
|
||||
}
|
||||
|
||||
auto max_temp = config_["critical-threshold"].isInt() ? config_["critical-threshold"].asInt() : 0;
|
||||
label_.set_markup(fmt::format(format,
|
||||
fmt::arg("temperatureC", temperature_c),
|
||||
|
Loading…
Reference in New Issue
Block a user