volume goes 0-9 now

This commit is contained in:
David Kelly 2017-02-17 11:11:08 -07:00
parent 51246a2e45
commit d938c70b48

View file

@ -248,7 +248,7 @@ Rectangle {
}
Text {
id: avgAudioVolume
text: model ? model.avgAudioLevel : 0.0
text: model ? (10 * model.avgAudioLevel).toFixed(0) : 0.0
visible: isText
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter