Merge pull request #7360 from nextcloud/bugfix/mac-vfs-storage-use-elide

Make sure storage headers do not collide with each other in macOS VFS settings
This commit is contained in:
Claudio Cambra 2024-10-18 16:18:13 +08:00 коммит произвёл GitHub
Родитель 09e10b99d7 88dd0e19ed
Коммит e60bbf97d8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -37,7 +37,6 @@ GridLayout {
Layout.row: 0
Layout.column: 0
Layout.alignment: Layout.AlignLeft | Layout.AlignVCenter
Layout.fillWidth: true
text: qsTr("Local storage use")
font.bold: true
}
@ -46,7 +45,9 @@ GridLayout {
Layout.row: 0
Layout.column: 1
Layout.alignment: Layout.AlignRight | Layout.AlignVCenter
Layout.fillWidth: true
text: qsTr("%1 GB of %2 GB remote files synced").arg(root.localUsedStorage.toFixed(2)).arg(root.remoteUsedStorage.toFixed(2));
elide: Text.ElideRight
color: Style.ncSecondaryTextColor
horizontalAlignment: Text.AlignRight
}
@ -65,4 +66,4 @@ GridLayout {
Layout.fillWidth: true
value: root.localUsedStorage / root.remoteUsedStorage
}
}
}