refactor(backlight): fix linter

This commit is contained in:
Kuruyia 2023-02-03 18:18:44 +01:00
parent e8c4b85328
commit 973aa09f8b

View File

@ -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;