mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Crop to Bounding Box > Save Box Region Only
This commit is contained in:
parent
90eaac5134
commit
8a16c8a196
@ -103,7 +103,7 @@ const IAICanvasSettingsButtonPopover = () => {
|
|||||||
onChange={(e) => dispatch(setShouldAutoSave(e.target.checked))}
|
onChange={(e) => dispatch(setShouldAutoSave(e.target.checked))}
|
||||||
/>
|
/>
|
||||||
<IAICheckbox
|
<IAICheckbox
|
||||||
label="Crop to Bounding Box"
|
label="Save Box Region Only"
|
||||||
isChecked={shouldCropToBoundingBoxOnSave}
|
isChecked={shouldCropToBoundingBoxOnSave}
|
||||||
onChange={(e) =>
|
onChange={(e) =>
|
||||||
dispatch(setShouldCropToBoundingBoxOnSave(e.target.checked))
|
dispatch(setShouldCropToBoundingBoxOnSave(e.target.checked))
|
||||||
|
@ -64,7 +64,7 @@ const initialCanvasState: CanvasState = {
|
|||||||
minimumStageScale: 1,
|
minimumStageScale: 1,
|
||||||
pastLayerStates: [],
|
pastLayerStates: [],
|
||||||
shouldAutoSave: false,
|
shouldAutoSave: false,
|
||||||
shouldCropToBoundingBoxOnSave: true,
|
shouldCropToBoundingBoxOnSave: false,
|
||||||
shouldDarkenOutsideBoundingBox: false,
|
shouldDarkenOutsideBoundingBox: false,
|
||||||
shouldLockBoundingBox: false,
|
shouldLockBoundingBox: false,
|
||||||
shouldPreserveMaskedArea: false,
|
shouldPreserveMaskedArea: false,
|
||||||
|
Loading…
Reference in New Issue
Block a user