From c2f8c0f97aad9ccc7ebe2179e689414b032e1a12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Vital?= Date: Mon, 3 Oct 2022 16:11:08 +0200 Subject: [PATCH] [ui] color bar fills line heigt --- meshroom/ui/qml/Controls/TextFileViewer.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meshroom/ui/qml/Controls/TextFileViewer.qml b/meshroom/ui/qml/Controls/TextFileViewer.qml index 9c399e94..29336137 100644 --- a/meshroom/ui/qml/Controls/TextFileViewer.qml +++ b/meshroom/ui/qml/Controls/TextFileViewer.qml @@ -202,8 +202,7 @@ Item { // Colored marker to quickly indicate duration Rectangle { width: 4 - height: lineMetrics.height - Layout.alignment: Qt.AlignTop + Layout.fillHeight: true color: duration > 0 ? Colors.durationColorScale(duration) : "transparent" }