Skip to content

network: Fix row removal when Bluetooth device is removed

Felipe Borges requested to merge fix-bluetooth-net-adapter-row-removal into main

When the user clicks in an existing Bluetooth connection and in the Connection Editor chooses to "Remove Connection", we should delete the row from the Bluetooth list.

Currently the row doesn't get deleted because the code that is shared among all network device types assumes every list to be a GtkBox, while the Bluetooth device list is a GtkListBox.

Let's check what's the connection being removed and remove the device from the Bluetooth listbox correctly.

Merge request reports