Skip to content

Commit

Permalink
fix(gui): set initial fill color
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Jan 22, 2023
1 parent 9d0a159 commit ce11165
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/src/state.ts
Expand Up @@ -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',
Expand All @@ -172,7 +172,7 @@ export function createStateSlices(base: ServerParams) {
set({
inpaint: {
...defaults,
fillColor: '',
fillColor: '#000000',
filter: 'none',
mask: null,
noise: 'histogram',
Expand Down

0 comments on commit ce11165

Please sign in to comment.