1
0
Fork 0

fix(gui): set initial fill color

This commit is contained in:
Sean Sube 2023-01-22 13:47:13 -06:00
parent 9d0a15900b
commit ce11165d0f
1 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ export function createStateSlices(base: ServerParams) {
const createInpaintSlice: StateCreator<OnnxState, [], [], InpaintSlice> = (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',