diff --git a/Source/Editor/Windows/GameWindow.cs b/Source/Editor/Windows/GameWindow.cs index 6561083f9..5bff8db69 100644 --- a/Source/Editor/Windows/GameWindow.cs +++ b/Source/Editor/Windows/GameWindow.cs @@ -691,7 +691,7 @@ namespace FlaxEditor.Windows { var button = menu.AddButton("Audio Volume"); button.CloseMenuOnClick = false; - var slider = new FloatValueBox(1, 140, 2, 50, 0, 1) { Parent = button }; + var slider = new FloatValueBox(AudioVolume, 140, 2, 50, 0, 1) { Parent = button }; slider.ValueChanged += () => AudioVolume = slider.Value; }