Fix Settings

This commit is contained in:
thororen1234 2024-08-29 09:32:43 -04:00
parent e348c258dc
commit dcbfb0d90d

View file

@ -85,11 +85,14 @@ const settings = definePluginSettings({
default: 0.5, default: 0.5,
markers: [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1] markers: [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1]
}, },
showLogsButton: { IconLocation: {
default: true, description: "choose where to show the SoundBoard Log icon (requires restart)",
type: OptionType.BOOLEAN, type: OptionType.SELECT,
description: "Toggle to whenever show the toolbox or not", options: [
restartNeeded: true, { label: "Toolbar", value: "toolbar", default: true },
{ label: "Chat input", value: "chat" }
],
restartNeeded: true
}, },
}); });