chore: Remove unused println

This commit is contained in:
dashie 2023-12-11 16:32:27 +00:00
parent a5c4a335c5
commit 4ce01688f9

View file

@ -48,10 +48,8 @@ impl BluetoothEntry {
entry.add_prefix(&Image::from_icon_name(&device.icon)); entry.add_prefix(&Image::from_icon_name(&device.icon));
} }
if device.connected || device.bonded { if device.connected || device.bonded {
println!("was bonded");
entry_imp.remove_device_button.borrow().set_sensitive(true); entry_imp.remove_device_button.borrow().set_sensitive(true);
} else { } else {
dbg!(&device);
entry_imp.remove_device_button.borrow().set_sensitive(false); entry_imp.remove_device_button.borrow().set_sensitive(false);
} }