Formatting

This commit is contained in:
quadbyte 2025-08-11 21:15:54 -04:00
parent ce66b99cee
commit 84c81ecb77
6 changed files with 229 additions and 61 deletions

View file

@ -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
}
}
}