diff --git a/src/qml/Component/Timeline/FileDelegate.qml b/src/qml/Component/Timeline/FileDelegate.qml index 109f95f28..368224647 100644 --- a/src/qml/Component/Timeline/FileDelegate.qml +++ b/src/qml/Component/Timeline/FileDelegate.qml @@ -110,14 +110,18 @@ TimelineContainer { ColumnLayout { spacing: 0 QQC2.Label { + Layout.fillWidth: true text: model.display wrapMode: Text.Wrap + elide: Text.ElideRight } QQC2.Label { id: sizeLabel - + Layout.fillWidth: true text: Controller.formatByteSize(content.info ? content.info.size : 0) opacity: 0.7 + elide: Text.ElideRight + maximumLineCount: 1 } }