From 9e70c216f651f700ea0858bbdc127b8f2669176d Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Mon, 31 Oct 2022 12:31:31 +1100 Subject: [PATCH] Sets defaults to show inpaint box and fill --- frontend/src/features/tabs/Inpainting/inpaintingSlice.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/features/tabs/Inpainting/inpaintingSlice.ts b/frontend/src/features/tabs/Inpainting/inpaintingSlice.ts index 8e7af93fe2..667164ff1d 100644 --- a/frontend/src/features/tabs/Inpainting/inpaintingSlice.ts +++ b/frontend/src/features/tabs/Inpainting/inpaintingSlice.ts @@ -64,8 +64,8 @@ const initialInpaintingState: InpaintingState = { boundingBoxDimensions: { width: 512, height: 512 }, boundingBoxCoordinate: { x: 0, y: 0 }, boundingBoxPreviewFill: { r: 0, g: 0, b: 0, a: 0.7 }, - shouldShowBoundingBox: false, - shouldShowBoundingBoxFill: false, + shouldShowBoundingBox: true, + shouldShowBoundingBoxFill: true, cursorPosition: null, lines: [], pastLines: [],