File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
VBAudioRouter.UWP/Controls/Nodes Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 29
29
Width =" 100"
30
30
Value =" 0"
31
31
Minimum =" 0"
32
- Maximum =" 4 "
33
- StepSize =" 0.2 "
32
+ Maximum =" 200 "
33
+ StepSize =" 1 "
34
34
IsInteractive =" True"
35
- TickSpacing =" 1 "
35
+ TickSpacing =" 10 "
36
36
ScaleWidth =" 4"
37
37
MinAngle =" 210"
38
38
MaxAngle =" 150"
Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ Namespace Controls.Nodes
35
35
End Function
36
36
37
37
Public Sub ReloadSettings() Implements IAudioNodeSerializable.ReloadSettings
38
- RadialGauge.Value = BaseAudioNode.OutgoingGain
38
+ RadialGauge.Value = BaseAudioNode.OutgoingGain * 100.0
39
39
End Sub
40
40
41
41
Public Sub OnStateChanged(state As GraphState) Implements IAudioNodeControl.OnStateChanged : End Sub
42
42
43
43
Private Sub RadialGauge_ValueChanged(sender As Object , e As RangeBaseValueChangedEventArgs)
44
- BaseAudioNode.OutgoingGain = RadialGauge.Value
44
+ BaseAudioNode.OutgoingGain = RadialGauge.Value / 100.0
45
45
End Sub
46
46
47
47
End Class
You can’t perform that action at this time.
0 commit comments