Fix pending indicator

This commit is contained in:
Tobias Fella
2024-08-24 17:42:11 +02:00
parent 941a724381
commit 22d0d84fee

View File

@@ -96,7 +96,7 @@ QQC2.Control {
source: "content-loading-symbolic"
Layout.preferredWidth: Kirigami.Units.iconSizes.small
Layout.preferredHeight: Kirigami.Units.iconSizes.small
visible: root.isPending && NeoChatConfig.showLocalMessagesOnRight
visible: root.isPending && Config.showLocalMessagesOnRight
}
ColumnLayout {
id: contentColumn
@@ -126,7 +126,7 @@ QQC2.Control {
source: "content-loading-symbolic"
Layout.preferredWidth: Kirigami.Units.iconSizes.small
Layout.preferredHeight: Kirigami.Units.iconSizes.small
visible: root.isPending && !NeoChatConfig.showLocalMessagesOnRight
visible: root.isPending && !Config.showLocalMessagesOnRight
}
}