forced roundness tweak config

This commit is contained in:
Henry Jameson 2024-06-21 22:46:01 +03:00
commit eed05f1380
6 changed files with 62 additions and 13 deletions

View file

@ -22,6 +22,11 @@ const AppearanceTab = {
key: mode,
value: mode,
label: this.$t(`settings.third_column_mode_${mode}`)
})),
forcedRoundnessOptions: ['disabled', 'sharp', 'nonsharp', 'round'].map((mode, i) => ({
key: mode,
value: i - 1,
label: this.$t(`settings.forced_roundness_mode_${mode}`)
}))
}
},