Browse Source

Removed streaming quality menu, for now

Signed-off-by: Blagovest Petrov <blagovest@petrovs.info>
pull/5/head
Blagovest Petrov 4 years ago
parent
commit
a250e70e31
  1. 90
      main.qml

90
main.qml

@ -136,51 +136,51 @@ Window {
source: "Resources/logo.png" source: "Resources/logo.png"
} }
Text { // Text {
id: element // id: element
x: 17 // x: 17
y: 68 // y: 68
text: qsTr("Качество:") // text: qsTr("Качество:")
font.bold: true // font.bold: true
color: "#f9c620" // color: "#f9c620"
styleColor: "#f9c620" // styleColor: "#f9c620"
horizontalAlignment: Text.AlignHCenter // horizontalAlignment: Text.AlignHCenter
font.pixelSize: 20 // font.pixelSize: 20
} // }
Rectangle { // Rectangle {
id: buttonHighQuality // id: buttonHighQuality
color: "#f9c620" // color: "#f9c620"
x: 17 // x: 17
y: 102 // y: 102
width: 100 // width: 100
height: 34 // height: 34
Text { // Text {
anchors.centerIn: parent // anchors.centerIn: parent
id: element1 // id: element1
text: qsTr("ВИСОКО") // text: qsTr("ВИСОКО")
color: "#000000" // color: "#000000"
font.pixelSize: 20 // font.pixelSize: 20
horizontalAlignment: Text.AlignHCenter // horizontalAlignment: Text.AlignHCenter
font.bold: true // font.bold: true
} // }
} // }
Rectangle { // Rectangle {
id: buttonLowQuality // id: buttonLowQuality
color: "transparent" // color: "transparent"
x: 24 // x: 24
y: 146 // y: 146
width: 100 // width: 100
height: 34 // height: 34
Text { // Text {
text: qsTr("НИСКО") // text: qsTr("НИСКО")
color: "#f9c620" // color: "#f9c620"
horizontalAlignment: Text.AlignHCenter // horizontalAlignment: Text.AlignHCenter
font.pixelSize: 20 // font.pixelSize: 20
font.bold: true // font.bold: true
} // }
} // }
MediaButton { MediaButton {
id: playPause id: playPause

Loading…
Cancel
Save