Rename Notification... components for consistency

This commit is contained in:
miruka 2021-02-28 12:06:34 -04:00
parent e5e78dcefa
commit 26a68acefd
3 changed files with 7 additions and 7 deletions

View File

@ -114,7 +114,7 @@ HListView {
} }
} }
delegate: NotificationRuleDelegate { delegate: PushRuleDelegate {
page: root page: root
width: root.width width: root.width
} }

View File

@ -36,7 +36,7 @@ HTile {
} }
HRowLayout { HRowLayout {
NotificationRuleButton { PushRuleButton {
id: notifyButton id: notifyButton
toggles: "notify" toggles: "notify"
@ -51,7 +51,7 @@ HTile {
} }
} }
NotificationRuleButton { PushRuleButton {
requiresOn: notifyButton requiresOn: notifyButton
toggles: "highlight" toggles: "highlight"
@ -68,13 +68,13 @@ HTile {
} }
} }
NotificationRuleButton { PushRuleButton {
requiresOn: notifyButton requiresOn: notifyButton
icon.name: "pushrule-action-bubble" icon.name: "pushrule-action-bubble"
toggles: "bubble" toggles: "bubble"
} }
NotificationRuleButton { PushRuleButton {
requiresOn: notifyButton requiresOn: notifyButton
icon.name: "pushrule-action-sound" icon.name: "pushrule-action-sound"
toggles: "sound" toggles: "sound"
@ -85,7 +85,7 @@ HTile {
"default" "default"
} }
NotificationRuleButton { PushRuleButton {
requiresOn: notifyButton requiresOn: notifyButton
icon.name: "pushrule-action-urgency-hint" icon.name: "pushrule-action-urgency-hint"
toggles: "urgency_hint" toggles: "urgency_hint"
@ -93,7 +93,7 @@ HTile {
HSpacer {} HSpacer {}
NotificationRuleButton { PushRuleButton {
icon.name: "pushrule-edit" icon.name: "pushrule-edit"
onClicked: root.clicked() onClicked: root.clicked()
} }