From ce11165d0f72f2b63383bbaabf0e5dd9ff86e482 Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Sun, 22 Jan 2023 13:47:13 -0600 Subject: [PATCH] fix(gui): set initial fill color --- gui/src/state.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/src/state.ts b/gui/src/state.ts index 3338a5de..3ef7be19 100644 --- a/gui/src/state.ts +++ b/gui/src/state.ts @@ -153,7 +153,7 @@ export function createStateSlices(base: ServerParams) { const createInpaintSlice: StateCreator = (set) => ({ inpaint: { ...defaults, - fillColor: '', + fillColor: '#000000', filter: 'none', mask: null, noise: 'histogram', @@ -172,7 +172,7 @@ export function createStateSlices(base: ServerParams) { set({ inpaint: { ...defaults, - fillColor: '', + fillColor: '#000000', filter: 'none', mask: null, noise: 'histogram',