diff options
author | Scott Murray <scott.murray@konsulko.com> | 2019-01-03 01:03:30 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2019-01-03 06:45:33 +0000 |
commit | 9dc69dffb11d4fa400b22742748887bac5525970 (patch) | |
tree | 4b761e8a8a10f57ab0b2a8729520f3e0af186186 /app/Mixer.qml | |
parent | 938e339554d6f7f47c6054768bba2bb92a9b8d17 (diff) |
Add some space between the volume slidershalibut_7.90.0halibut/7.90.0guppy_6.99.4guppy/6.99.47.90.06.99.4
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>
Diffstat (limited to 'app/Mixer.qml')
-rw-r--r-- | app/Mixer.qml | 1 |
1 files changed, 1 insertions, 0 deletions
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 {} } |