[Linux] Add Qr-Code to sync irk and enc key (#142)

This commit is contained in:
Tim Gromeyer
2025-06-05 09:03:29 +02:00
committed by GitHub
parent dcb25e2e52
commit 43d703423a
8 changed files with 1514 additions and 0 deletions

View File

@@ -268,6 +268,17 @@ ApplicationWindow {
onClicked: airPodsTrayApp.deviceInfo.renameAirPods(newNameField.text)
}
}
Button {
text: "Show Magic Cloud Keys QR"
onClicked: keysQrDialog.show()
}
KeysQRDialog {
id: keysQrDialog
encKey: airPodsTrayApp.deviceInfo.magicAccEncKey
irk: airPodsTrayApp.deviceInfo.magicAccIRK
}
}
}