https://bugs.kde.org/show_bug.cgi?id=488447
--- Comment #2 from Nate Graham <n...@kde.org> --- Code says this: helpfulAction: { if (BluezQt.Manager.rfkill.state === BluezQt.Rfkill.Unknown) { return null; } else if (btManager.bluetoothBlocked) { return enableBluetoothAction; } else if (root.emptyList) { return addBluetoothDeviceAction; } else { return null; } } So we're only showing the button when btManager.bluetoothBlocked is true. Probably we're missing another condition in there. -- You are receiving this mail because: You are watching all bug changes.