Spell like an American

This commit is contained in:
James Graham
2022-07-10 13:06:29 +01:00
parent f24428fab3
commit 63e7ec1bd7
2 changed files with 6 additions and 6 deletions

View File

@@ -24,8 +24,8 @@ QQC2.ItemDelegate {
anchors.leftMargin: Kirigami.Units.largeSpacing
anchors.rightMargin: Kirigami.Units.largeSpacing
state: Config.compactLayout ? "alignLeft" : "alignCentre"
// Align left when in compact mode and centre when using bubbles
state: Config.compactLayout ? "alignLeft" : "alignCenter"
// Align left when in compact mode and center when using bubbles
states: [
State {
name: "alignLeft"
@@ -36,7 +36,7 @@ QQC2.ItemDelegate {
}
},
State {
name: "alignCentre"
name: "alignCenter"
AnchorChanges {
target: readMarkerDelegate
anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined

View File

@@ -63,8 +63,8 @@ QQC2.ItemDelegate {
}
}
state: Config.compactLayout ? "alignLeft" : "alignCentre"
// Align left when in compact mode and centre when using bubbles
state: Config.compactLayout ? "alignLeft" : "alignCenter"
// Align left when in compact mode and center when using bubbles
states: [
State {
name: "alignLeft"
@@ -75,7 +75,7 @@ QQC2.ItemDelegate {
}
},
State {
name: "alignCentre"
name: "alignCenter"
AnchorChanges {
target: messageDelegate
anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined