mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Default Seam Steps to 30
Seems to be the temporary solution for the seams looking horrible with some diffuser models.
This commit is contained in:
parent
c0614ac7f3
commit
3083f8313d
@ -17,7 +17,7 @@ export default function SeamSteps() {
|
||||
sliderMarkRightOffset={-4}
|
||||
label={t('options:seamSteps')}
|
||||
min={1}
|
||||
max={32}
|
||||
max={100}
|
||||
sliderNumberInputProps={{ max: 999 }}
|
||||
value={seamSteps}
|
||||
onChange={(v) => {
|
||||
@ -27,7 +27,7 @@ export default function SeamSteps() {
|
||||
withSliderMarks
|
||||
withReset
|
||||
handleReset={() => {
|
||||
dispatch(setSeamSteps(10));
|
||||
dispatch(setSeamSteps(30));
|
||||
}}
|
||||
/>
|
||||
);
|
||||
|
@ -81,7 +81,7 @@ const initialOptionsState: OptionsState = {
|
||||
seamBlur: 16,
|
||||
seamless: false,
|
||||
seamSize: 96,
|
||||
seamSteps: 10,
|
||||
seamSteps: 30,
|
||||
seamStrength: 0.7,
|
||||
seed: 0,
|
||||
seedWeights: '',
|
||||
|
Loading…
Reference in New Issue
Block a user