@@ -6,19 +6,24 @@ import QtQuick.Controls
66import Score.UI as UI
77import "./Engine.js" as Engine
88
9+ ColumnLayout {
10+ Item {
11+ height: 2
12+ width: 1
13+ }
914RowLayout {
1015 property Style style
1116 spacing: 10
1217
1318 Label {
14- text: " Quick Setup:"
19+ text: " Quick Setup:"
1520 color: " #ffffff"
1621 verticalAlignment: Text .AlignVCenter
1722 font .pointSize : skin .fontMedium
1823 }
1924
2025 Button {
21- Layout .preferredWidth : Math . max ( 80 , Math . min ( 120 , window . width * 0.12 ))
26+ Layout .preferredWidth : 80
2227 text: " SpatGRIS"
2328 onClicked: Engine .createOutputDevice (" SpatGRIS_1" , " 127.0.0.1" , 18042 , " SpatGRIS" )
2429
@@ -38,7 +43,7 @@ RowLayout {
3843 }
3944
4045 Button {
41- Layout .preferredWidth : Math . max ( 80 , Math . min ( 120 , window . width * 0.12 ))
46+ Layout .preferredWidth : 80
4247 text: " ADM-OSC"
4348 onClicked: Engine .createOutputDevice (" ADM_1" , " 127.0.0.1" , 9000 , " ADM-OSC" )
4449
@@ -58,7 +63,7 @@ RowLayout {
5863 }
5964
6065 Button {
61- Layout .preferredWidth : Math . max ( 80 , Math . min ( 120 , window . width * 0.12 ))
66+ Layout .preferredWidth : 80
6267 text: " SPAT Rev"
6368 onClicked: Engine .createOutputDevice (" SPAT_1" , " 127.0.0.1" , 8088 , " SPAT Revolution" )
6469
@@ -127,3 +132,4 @@ RowLayout {
127132 }
128133 }
129134}
135+ }
0 commit comments