mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-08-01 01:07:33 +00:00
Fix more cases of Kirigami.Action iconName
This commit is contained in:
parent
4ebe576671
commit
324889ed8c
2 changed files with 4 additions and 4 deletions
|
|
@ -100,7 +100,7 @@ Item {
|
||||||
text: i18n("Wi-Fi is disabled")
|
text: i18n("Wi-Fi is disabled")
|
||||||
icon.name: "network-wireless-disconnected"
|
icon.name: "network-wireless-disconnected"
|
||||||
helpfulAction: Kirigami.Action {
|
helpfulAction: Kirigami.Action {
|
||||||
iconName: "network-wireless-connected"
|
icon.name: "network-wireless-connected"
|
||||||
text: i18n("Enable")
|
text: i18n("Enable")
|
||||||
onTriggered: handler.enableWireless(true)
|
onTriggered: handler.enableWireless(true)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ Kirigami.ScrollablePage {
|
||||||
icon.name: "globe"
|
icon.name: "globe"
|
||||||
|
|
||||||
helpfulAction: Kirigami.Action {
|
helpfulAction: Kirigami.Action {
|
||||||
iconName: "list-add"
|
icon.name: "list-add"
|
||||||
text: i18n("Add Connection")
|
text: i18n("Add Connection")
|
||||||
onTriggered: {
|
onTriggered: {
|
||||||
profileDialog.profile = null;
|
profileDialog.profile = null;
|
||||||
|
|
@ -129,7 +129,7 @@ Kirigami.ScrollablePage {
|
||||||
|
|
||||||
actions: [
|
actions: [
|
||||||
Kirigami.Action {
|
Kirigami.Action {
|
||||||
iconName: "entry-edit"
|
icon.name: "entry-edit"
|
||||||
text: i18n("Edit")
|
text: i18n("Edit")
|
||||||
onTriggered: {
|
onTriggered: {
|
||||||
profileDialog.profile = modelData;
|
profileDialog.profile = modelData;
|
||||||
|
|
@ -137,7 +137,7 @@ Kirigami.ScrollablePage {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
Kirigami.Action {
|
Kirigami.Action {
|
||||||
iconName: "delete"
|
icon.name: "delete"
|
||||||
text: i18n("Delete")
|
text: i18n("Delete")
|
||||||
onTriggered: modem.removeProfile(modelData.connectionUni)
|
onTriggered: modem.removeProfile(modelData.connectionUni)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue