Add gitreview file for Lucky Lamprey branch
[apps/mixer.git] / app / Mixer.qml
index 455743a..b14ae68 100644 (file)
@@ -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 {}
        }