diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-08-05 11:48:08 -0700 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-08-05 12:23:22 -0700 |
commit | cd772d4009778020073318fb8845095aa81c0f8c (patch) | |
tree | 1a18ec68ce12ebf71e0c7f52f06bc4aedf718efe | |
parent | b9661ce6b9f4eb6845854ebe90e05cc5b446088b (diff) |
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 <matt.ranostay@konsulko.com>
-rw-r--r-- | app/VolumeSlider.qml | 10 |
1 files 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 |