From 42a22cb9c279ef802028574e167c95db6de943d2 Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Mon, 5 Aug 2019 11:48:08 -0700 Subject: volumeslider: rework of slider layout To avoid text cutoff switch to ColumnLayout instead of rows. Bug-AGL: SPEC-2711 Change-Id: I490d0e92d6ed89613d8fc7d983f869ab848e8932 Signed-off-by: Matt Ranostay (cherry picked from commit cd772d4009778020073318fb8845095aa81c0f8c) --- app/VolumeSlider.qml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/app/VolumeSlider.qml b/app/VolumeSlider.qml index b44d74c..b7a98f8 100644 --- a/app/VolumeSlider.qml +++ b/app/VolumeSlider.qml @@ -2,24 +2,18 @@ import QtQuick 2.6 import QtQuick.Layouts 1.1 import QtQuick.Controls 2.0 -RowLayout { +ColumnLayout { anchors.left: parent.left anchors.right: parent.right - Layout.minimumHeight: 75 + Layout.minimumHeight: 125 Label { font.pixelSize: 24 text: modelData.name - Layout.minimumWidth: 150 - Layout.maximumWidth: 150 - elide: Text.ElideRight } Label { font.pixelSize: 24 text: modelData.value + " %" - Layout.minimumWidth: 75 - Layout.maximumWidth: 75 - elide: Text.ElideRight } Slider { id: roleValueSlider -- cgit 1.2.3-korg