From 324889ed8cd5d83d54f7d1bd71bf1b0ac5687438 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Fri, 12 May 2023 18:48:34 -0400 Subject: [PATCH] Fix more cases of Kirigami.Action iconName --- initialstart/modules/wifi/package/contents/ui/main.qml | 2 +- kcms/cellularnetwork/ui/ProfileList.qml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/initialstart/modules/wifi/package/contents/ui/main.qml b/initialstart/modules/wifi/package/contents/ui/main.qml index 7cb25a6b..aaeb18e5 100644 --- a/initialstart/modules/wifi/package/contents/ui/main.qml +++ b/initialstart/modules/wifi/package/contents/ui/main.qml @@ -100,7 +100,7 @@ Item { text: i18n("Wi-Fi is disabled") icon.name: "network-wireless-disconnected" helpfulAction: Kirigami.Action { - iconName: "network-wireless-connected" + icon.name: "network-wireless-connected" text: i18n("Enable") onTriggered: handler.enableWireless(true) } diff --git a/kcms/cellularnetwork/ui/ProfileList.qml b/kcms/cellularnetwork/ui/ProfileList.qml index 8fc42094..68a247ee 100644 --- a/kcms/cellularnetwork/ui/ProfileList.qml +++ b/kcms/cellularnetwork/ui/ProfileList.qml @@ -27,7 +27,7 @@ Kirigami.ScrollablePage { icon.name: "globe" helpfulAction: Kirigami.Action { - iconName: "list-add" + icon.name: "list-add" text: i18n("Add Connection") onTriggered: { profileDialog.profile = null; @@ -129,7 +129,7 @@ Kirigami.ScrollablePage { actions: [ Kirigami.Action { - iconName: "entry-edit" + icon.name: "entry-edit" text: i18n("Edit") onTriggered: { profileDialog.profile = modelData; @@ -137,7 +137,7 @@ Kirigami.ScrollablePage { } }, Kirigami.Action { - iconName: "delete" + icon.name: "delete" text: i18n("Delete") onTriggered: modem.removeProfile(modelData.connectionUni) }