From 42fd2ac59808fd99c272260eab884f0b23709276 Mon Sep 17 00:00:00 2001
From: Scott Murray <scott.murray@konsulko.com>
Date: Thu, 3 Jan 2019 01:03:30 -0500
Subject: Add some space between the volume sliders

The change to a ListView to hold the volume sliders seems to have
resulted in losing any space between them compared to the default
behavior of the previous ColumnLayout scheme.  Setting the ListView
"spacing" parameter restores a bit of space between the sliders to
make them easier to use.

Change-Id: Ie1a21918d529f7ba45cdce009405c63055b7e2e2
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
---
 app/Mixer.qml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app/Mixer.qml b/app/Mixer.qml
index 455743a..a012645 100644
--- a/app/Mixer.qml
+++ b/app/Mixer.qml
@@ -59,6 +59,7 @@ ApplicationWindow {
 		anchors.left: parent.left
 		anchors.right: parent.right
 		anchors.bottom: parent.bottom
+		spacing: 10
 
 		delegate: VolumeSlider {}
 	}
-- 
cgit