linux: update rename function call for airPods (#191)

previously it was failing with an error that renameAirPods is not a function
This should fix that as the function is defined in airPodsTrayApp
This commit is contained in:
Naveen M K
2025-08-25 17:55:06 +05:30
committed by GitHub
parent 598bd3d7d8
commit dde5d1e808

View File

@@ -265,7 +265,7 @@ ApplicationWindow {
Button {
text: "Rename"
onClicked: airPodsTrayApp.deviceInfo.renameAirPods(newNameField.text)
onClicked: airPodsTrayApp.renameAirPods(newNameField.text)
}
}