From 0d919bdb112ebf6b064b9c55dc09298880c1c60a Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Sun, 15 Jan 2023 11:16:39 -0600 Subject: [PATCH] lint(gui): set histogram noise to the default --- gui/src/state.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gui/src/state.ts b/gui/src/state.ts index 72d321f2..a77d8ab3 100644 --- a/gui/src/state.ts +++ b/gui/src/state.ts @@ -126,9 +126,9 @@ export function createStateSlices(base: ConfigParams) { const createInpaintSlice: StateCreator = (set) => ({ inpaint: { ...defaults, - filter: '', + filter: 'none', mask: null, - noise: '', + noise: 'histogram', source: null, }, setInpaint(params) { @@ -143,10 +143,10 @@ export function createStateSlices(base: ConfigParams) { set({ inpaint: { ...defaults, - filter: '', + filter: 'none', mask: null, + noise: 'histogram', source: null, - noise: '', }, }); },