Skip to content

Commit

Permalink
fix(gui): send blend strength for inpainting
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Jan 18, 2023
1 parent be3a17b commit 521fa88
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gui/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ export function makeClient(root: string, f = fetch): ApiClient {

url.searchParams.append('filter', params.filter);
url.searchParams.append('noise', params.noise);
url.searchParams.append('strength', params.strength.toFixed(FIXED_FLOAT));

if (doesExist(upscale)) {
appendUpscaleToURL(url, upscale);
Expand Down

0 comments on commit 521fa88

Please sign in to comment.