Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
Layout.fillWidth: true
text: qsTr("General settings")
font.bold: true
- font.pointSize: root.font.pointSize + 2
+ font.pointSize: Style.subheaderFontPtSize
elide: Text.ElideRight
}
Layout.topMargin: Style.standardSpacing
text: qsTr("Advanced")
font.bold: true
- font.pointSize: root.font.pointSize + 2
+ font.pointSize: Style.subheaderFontPtSize
elide: Text.ElideRight
}
rows: syncStatus.syncing ? 2 : 1
- EnforcedPlainTextLabel {
- Layout.row: 0
- Layout.column: 1
- Layout.columnSpan: root.syncStatus.syncing ? 2 : 1
- Layout.fillWidth: true
- font.bold: true
- text: root.syncStatus.syncing ? qsTr("Syncing") : qsTr("All synced!")
- }
-
NCBusyIndicator {
id: syncIcon
running: root.syncStatus.syncing
}
+ EnforcedPlainTextLabel {
+ Layout.row: 0
+ Layout.column: 1
+ Layout.columnSpan: root.syncStatus.syncing ? 2 : 1
+ Layout.fillWidth: true
+ font.bold: true
+ font.pointSize: Style.headerFontPtSize
+ text: root.syncStatus.syncing ? qsTr("Syncing") : qsTr("All synced!")
+ }
+
ProgressBar {
Layout.row: 1
Layout.column: 1