X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=app%2FMixer.qml;h=b14ae68ce819139e2b0c246f34c0737619fe991b;hb=refs%2Ftags%2F12.1.11;hp=455743aaa1144bda189abf76f2b3f90c4e4736eb;hpb=d32d36b936cb031ba1b11c67c0d9c6afbdc280b3;p=apps%2Fmixer.git diff --git a/app/Mixer.qml b/app/Mixer.qml index 455743a..b14ae68 100644 --- a/app/Mixer.qml +++ b/app/Mixer.qml @@ -20,6 +20,8 @@ import QtQuick.Controls 2.0 import AGL.Demo.Controls 1.0 import Mixer 1.0 +import QtQuick.Window 2.13 + ApplicationWindow { // ----- Signals @@ -28,8 +30,8 @@ ApplicationWindow { // ----- Setup id: root - width: 1080 * roles.scale - height: 1487 * roles.scale + width: Window.width * roles.scale + height: Window.height * roles.scale // ----- Childs Label { @@ -52,13 +54,15 @@ ApplicationWindow { ListView { id: roles model: mixer.roles - scale: scale_factor + //scale: scale_factor + scale: 1 anchors.margins: 80 anchors.top: title.bottom anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom + spacing: 10 delegate: VolumeSlider {} }