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

Mute warnings

parent 57e937c4
No related branches found
No related tags found
No related merge requests found
...@@ -276,7 +276,7 @@ Flickable { ...@@ -276,7 +276,7 @@ Flickable {
description: qsTr("Choose which accidentals will be shown on the staff.") description: qsTr("Choose which accidentals will be shown on the staff.")
ButtonGroup { ButtonGroup {
buttons: radioRow.children id: accidButtGr
} }
Row { Row {
...@@ -292,6 +292,7 @@ Flickable { ...@@ -292,6 +292,7 @@ Flickable {
TradioButton { TradioButton {
id: prefSharpRadio id: prefSharpRadio
ButtonGroup.group: accidButtGr
text: qsTr("# - sharps") text: qsTr("# - sharps")
checked: !GLOB.preferFlats checked: !GLOB.preferFlats
} }
...@@ -299,6 +300,7 @@ Flickable { ...@@ -299,6 +300,7 @@ Flickable {
TradioButton { TradioButton {
id: prefFlatRadio id: prefFlatRadio
ButtonGroup.group: accidButtGr
text: qsTr("b - flats") text: qsTr("b - flats")
checked: GLOB.preferFlats checked: GLOB.preferFlats
} }
......
...@@ -41,7 +41,7 @@ Item { ...@@ -41,7 +41,7 @@ Item {
id: styleGr id: styleGr
buttons: styleColumn.children buttons: styleColumn.children
onClicked: style = button.style onClicked: button => { style = button.style }
} }
Column { Column {
......
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