From 973b68c304d3632f53c71eeb8e8104df72a85175 Mon Sep 17 00:00:00 2001 From: Sebastian Kügler Date: Thu, 12 Nov 2015 02:13:47 +0100 Subject: Fix label overflow in divelist MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - anchor the label to the left of the date field - elide the text instead This fixes the bug in the dive list where the dive's location overflowed over the date, especially visible on phones in portrait mode. Signed-off-by: Sebastian Kügler Signed-off-by: Dirk Hohndel --- qt-mobile/qml/DiveList.qml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'qt-mobile/qml') diff --git a/qt-mobile/qml/DiveList.qml b/qt-mobile/qml/DiveList.qml index a72d34ed4..4f147bf6d 100644 --- a/qt-mobile/qml/DiveList.qml +++ b/qt-mobile/qml/DiveList.qml @@ -51,14 +51,19 @@ Rectangle { id: locationText text: location color: theme.textColor - scale: 1.1 // Let's see how this works, otherwise, we'll need the default point size somewhere + //font.pointSize: Math.round(units.fontMetrics.pointSize * 1.2) // why this doesn't work is a mystery to me, so ... + scale: 1.2 // Let's see how this works, otherwise, we'll need the default point size somewhere transformOrigin: Item.TopLeft + elide: Text.ElideRight + maximumLineCount: 1 // needed for elide to work at all anchors { left: parent.left top: parent.top + right: dateLabel.left } } Text { + id: dateLabel text: date opacity: 0.6 color: theme.textColor -- cgit v1.2.3-70-g09d2