From eee2ab92fee15c4151314bbfc16d0ae5492b455d Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 5 Jul 2026 23:12:36 +0200 Subject: [PATCH] style(bluetooth): clang-format the enumerate args --- src/modules/bluetooth.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/modules/bluetooth.cpp b/src/modules/bluetooth.cpp index 3e4203d9..58b1711f 100644 --- a/src/modules/bluetooth.cpp +++ b/src/modules/bluetooth.cpp @@ -352,8 +352,7 @@ auto waybar::modules::Bluetooth::update() -> void { dev.battery_percentage_peripheral.value_or(0)), // Also accept the module-level placeholders so {status} etc. don't // throw "argument not found" in an enumerate format (#4384). - fmt::arg("status", state_), - fmt::arg("num_connections", connected_devices_.size()), + fmt::arg("status", state_), fmt::arg("num_connections", connected_devices_.size()), fmt::arg("controller_address", cur_controller_ ? cur_controller_->address : "null"), fmt::arg("controller_address_type", cur_controller_ ? cur_controller_->address_type : "null"),