ui: split the canvas mask blur and edge size setting

This commit is contained in:
blessedcoolant
2024-02-26 19:05:11 +05:30
committed by psychedelicious
parent 32b8478974
commit afa7043dcd
9 changed files with 21 additions and 16 deletions

View File

@ -88,9 +88,9 @@ export const initialConfigState: AppConfig = {
},
canvasCoherenceEdgeSize: {
initial: 16,
sliderMin: 16,
sliderMax: 512,
numberInputMin: 16,
sliderMin: 0,
sliderMax: 128,
numberInputMin: 0,
numberInputMax: 1024,
fineStep: 8,
coarseStep: 16,
@ -134,7 +134,7 @@ export const initialConfigState: AppConfig = {
maskBlur: {
initial: 16,
sliderMin: 0,
sliderMax: 64,
sliderMax: 128,
numberInputMin: 0,
numberInputMax: 512,
fineStep: 1,