From dde5d1e808722bbe7f354863773c93d8bb40c777 Mon Sep 17 00:00:00 2001 From: Naveen M K Date: Mon, 25 Aug 2025 17:55:06 +0530 Subject: [PATCH] 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 --- linux/Main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/Main.qml b/linux/Main.qml index 6ec6331..1bfc3b7 100644 --- a/linux/Main.qml +++ b/linux/Main.qml @@ -265,7 +265,7 @@ ApplicationWindow { Button { text: "Rename" - onClicked: airPodsTrayApp.deviceInfo.renameAirPods(newNameField.text) + onClicked: airPodsTrayApp.renameAirPods(newNameField.text) } }