Skip to content

Commit 841a004

Browse files
committed
fix: lint
1 parent 839975c commit 841a004

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/modules/backlight.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,8 @@ auto waybar::modules::Backlight::update() -> void {
190190
event_box_.show();
191191
const uint8_t percent =
192192
best->get_max() == 0 ? 100 : round(best->get_actual() * 100.0f / best->get_max());
193-
std::string desc =
194-
fmt::format(fmt::runtime(format_), fmt::arg("percent", percent),
195-
fmt::arg("icon", getIcon(percent)));
193+
std::string desc = fmt::format(fmt::runtime(format_), fmt::arg("percent", percent),
194+
fmt::arg("icon", getIcon(percent)));
196195
label_.set_markup(desc);
197196
getState(percent);
198197
if (tooltipEnabled()) {

0 commit comments

Comments
 (0)