Fix a bug where the step size starts at 0 instead of 1

This commit is contained in:
2023-09-24 14:59:52 -06:00
parent f94052e54b
commit d89c8b1ffa
2 changed files with 6 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ public class DialAction : EncoderBase
{
PluginSettings instance = new PluginSettings();
instance.FallbackBehavior = FallbackBehavior.SystemSounds;
instance.StepSize = 1;
return instance;
}
}