Fix Bounding Box Settings re-rendering on brush stroke

This commit is contained in:
blessedcoolant 2022-11-02 06:40:27 +13:00 committed by Lincoln Stein
parent 68e6958009
commit 2e562742c1
3 changed files with 2 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>InvokeAI - A Stable Diffusion Toolkit</title>
<link rel="shortcut icon" type="icon" href="./assets/favicon.0d253ced.ico" />
<script type="module" crossorigin src="./assets/index.8331c26d.js"></script>
<script type="module" crossorigin src="./assets/index.f51a2644.js"></script>
<link rel="stylesheet" href="./assets/index.14c578ee.css">
</head>

View File

@ -31,8 +31,6 @@ const boundingBoxDimensionsSelector = createSelector(
boundingBoxDimensions,
shouldShowBoundingBox,
shouldShowBoundingBoxFill,
pastLines,
futureLines,
shouldLockBoundingBox,
} = inpainting;
return {
@ -40,8 +38,6 @@ const boundingBoxDimensionsSelector = createSelector(
boundingBoxDimensions,
shouldShowBoundingBox,
shouldShowBoundingBoxFill,
pastLines,
futureLines,
shouldLockBoundingBox,
};
},