From fc7c5da4ddec21aceb540290df2f77179770da58 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Wed, 7 Jun 2023 23:55:24 +1000 Subject: [PATCH] fix(ui): default controlnet autoprocess to true I had accidentally defaulted it to false --- .../web/src/features/controlNet/store/controlNetSlice.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invokeai/frontend/web/src/features/controlNet/store/controlNetSlice.ts b/invokeai/frontend/web/src/features/controlNet/store/controlNetSlice.ts index c4badef395..2558a38ab2 100644 --- a/invokeai/frontend/web/src/features/controlNet/store/controlNetSlice.ts +++ b/invokeai/frontend/web/src/features/controlNet/store/controlNetSlice.ts @@ -30,7 +30,7 @@ export const initialControlNet: Omit = { processorType: 'canny_image_processor', processorNode: CONTROLNET_PROCESSORS.canny_image_processor .default as RequiredCannyImageProcessorInvocation, - shouldAutoConfig: false, + shouldAutoConfig: true, }; export type ControlNetConfig = {