refactor(backlight): fix linter
This commit is contained in:
parent
e8c4b85328
commit
973aa09f8b
|
@ -334,7 +334,9 @@ bool waybar::modules::Backlight::handleScroll(GdkEventScroll *e) {
|
|||
new_value = std::clamp(new_value, 0, best->get_max());
|
||||
|
||||
// Set the new value
|
||||
auto call_args = Glib::VariantContainerBase(g_variant_new("(ssu)", "backlight", std::string(best->name()).c_str(), new_value));
|
||||
auto call_args = Glib::VariantContainerBase(
|
||||
g_variant_new("(ssu)", "backlight", std::string(best->name()).c_str(), new_value));
|
||||
|
||||
login_proxy_->call_sync("SetBrightness", call_args);
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue