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))} 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))

View File

@ -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,