Crop to Bounding Box > Save Box Region Only

This commit is contained in:
psychedelicious 2022-11-20 21:49:09 +11:00 committed by blessedcoolant
parent 90eaac5134
commit 8a16c8a196
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ const IAICanvasSettingsButtonPopover = () => {
onChange={(e) => dispatch(setShouldAutoSave(e.target.checked))}
/>
<IAICheckbox
label="Crop to Bounding Box"
label="Save Box Region Only"
isChecked={shouldCropToBoundingBoxOnSave}
onChange={(e) =>
dispatch(setShouldCropToBoundingBoxOnSave(e.target.checked))

View File

@ -64,7 +64,7 @@ const initialCanvasState: CanvasState = {
minimumStageScale: 1,
pastLayerStates: [],
shouldAutoSave: false,
shouldCropToBoundingBoxOnSave: true,
shouldCropToBoundingBoxOnSave: false,
shouldDarkenOutsideBoundingBox: false,
shouldLockBoundingBox: false,
shouldPreserveMaskedArea: false,