Formatting
This commit is contained in:
parent
ce66b99cee
commit
84c81ecb77
6 changed files with 229 additions and 61 deletions
|
|
@ -20,17 +20,28 @@ Item {
|
|||
color: Colors.accentSecondary
|
||||
}
|
||||
|
||||
NText { text: "Visualizer Type"; color: Colors.textPrimary; font.weight: Style.fontWeightBold }
|
||||
NText { text: "Choose the style of the audio visualizer"; color: Colors.textSecondary }
|
||||
NText {
|
||||
text: "Visualizer Type"
|
||||
color: Colors.textPrimary
|
||||
font.weight: Style.fontWeightBold
|
||||
}
|
||||
NText {
|
||||
text: "Choose the style of the audio visualizer"
|
||||
color: Colors.textSecondary
|
||||
}
|
||||
|
||||
NComboBox {
|
||||
id: visualizerTypeComboBox
|
||||
optionsKeys: ["radial", "fire", "diamond"]
|
||||
optionsLabels: ["Radial", "Fire", "Diamond"]
|
||||
currentKey: Settings.data.audioVisualizer.type
|
||||
onSelected: function (key) { Settings.data.audioVisualizer.type = key }
|
||||
onSelected: function (key) {
|
||||
Settings.data.audioVisualizer.type = key
|
||||
}
|
||||
}
|
||||
|
||||
Item { Layout.fillHeight: true }
|
||||
Item {
|
||||
Layout.fillHeight: true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue