VolumeBooster: make multiplier option more flexible (#3656)

This commit is contained in:
ww 2025-09-08 04:30:08 +03:00 committed by GitHub
parent b225f2ec6c
commit a4e1d026ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,7 +24,7 @@ const settings = definePluginSettings({
multiplier: { multiplier: {
description: "Volume Multiplier", description: "Volume Multiplier",
type: OptionType.SLIDER, type: OptionType.SLIDER,
markers: makeRange(1, 5, 1), markers: makeRange(1, 5, 0.5),
default: 2, default: 2,
stickToMarkers: true, stickToMarkers: true,
} }