Skip to content
Snippets Groups Projects
Commit d6752576 authored by SeeLook's avatar SeeLook :musical_note:
Browse files

Use up/down Nootka font symbols in Transposition control

and increase size
parent f601504e
No related branches found
No related tags found
No related merge requests found
Pipeline #2624 passed
1.7.3 git
- exam melodies can be played in order from melody set
- exam melodies from melody set can be played in order
- melodies order in set is editable
- user can define repeats number of melodies from the set
- updated SoundTouch library version to 2.2 (Windows&Android)
......
......@@ -72,7 +72,7 @@ TmelodyListView {
leftPadding: Noo.fontSize() / 2; topPadding: Noo.fontSize()
TcuteButton {
width: Noo.fontSize() * 3
font { pixelSize: Noo.fontSize() * 2; bold: true; family: "Sans" }
font { pixelSize: Noo.fontSize() * 2.5; bold: true; family: "Sans" }
text: "+"; textColor: "green"
onClicked: {
loadMelody()
......@@ -81,7 +81,7 @@ TmelodyListView {
}
TcuteButton {
width: Noo.fontSize() * 3
font { pixelSize: Noo.fontSize() * 2; bold: true; family: "Nootka" }
font { pixelSize: Noo.fontSize() * 2.5; family: "Nootka" }
text: "\u2191"; textColor: enabled ? "#008080" : disdPal.text
enabled: currentMelody > 0
onClicked: {
......@@ -91,7 +91,7 @@ TmelodyListView {
}
TcuteButton {
width: Noo.fontSize() * 3
font { pixelSize: Noo.fontSize() * 2; bold: true; family: "Nootka" }
font { pixelSize: Noo.fontSize() * 2.5; family: "Nootka" }
text: "\u2193"; textColor: enabled ? "#008080" : disdPal.text
enabled: currentMelody > -1 && currentMelody < melMod.count - 1
onClicked: {
......@@ -101,7 +101,7 @@ TmelodyListView {
}
TcuteButton {
width: Noo.fontSize() * 3
font { pixelSize: Noo.fontSize() * 2; bold: true; family: "Sans" }
font { pixelSize: Noo.fontSize() * 2.5; bold: true; family: "Sans" }
text: "-"; textColor: enabled ? "red" : disdPal.text
enabled: currentMelody > -1
onClicked: removeWrapper(currentMelody)
......
......@@ -36,7 +36,13 @@ Grid {
ButtonGroup { buttons: radioCol.children }
Column {
id: radioCol
TradioButton { id: upRadio; text: "<b><font size=\"6\">\u2191</font></b> " + qsTr("up") }
TradioButton { id: downRadio; text: "<b><font size=\"6\">\u2193</font></b> " + qsTr("down") }
Row {
TlabelText { text: "\u2191"; font { pixelSize: Noo.fontSize() * 2.5; family: "Nootka" }}
TradioButton { id: upRadio; text: qsTr("up") }
}
Row {
TlabelText { text: "\u2193"; font { pixelSize: Noo.fontSize() * 2.5; family: "Nootka" }}
TradioButton { id: downRadio; text: qsTr("down") }
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment