1
0
Fork 0

lint(gui): move tiled VAE option later in its row

This commit is contained in:
Sean Sube 2023-05-02 19:09:48 -05:00
parent 55a1e46fc3
commit 72c39b62ec
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 15 additions and 15 deletions

View File

@ -147,21 +147,6 @@ export function ImageControl(props: ImageControlProps) {
}
}}
/>
<FormControlLabel
label={t('parameter.tiledVAE')}
control={<Checkbox
checked={controlState.tiledVAE}
value='check'
onChange={(event) => {
if (doesExist(props.onChange)) {
props.onChange({
...controlState,
tiledVAE: controlState.tiledVAE === false,
});
}
}}
/>}
/>
<NumericField
label={t('parameter.tiles')}
min={params.tiles.min}
@ -193,6 +178,21 @@ export function ImageControl(props: ImageControlProps) {
}
}}
/>
<FormControlLabel
label={t('parameter.tiledVAE')}
control={<Checkbox
checked={controlState.tiledVAE}
value='check'
onChange={(event) => {
if (doesExist(props.onChange)) {
props.onChange({
...controlState,
tiledVAE: controlState.tiledVAE === false,
});
}
}}
/>}
/>
</Stack>
<PromptInput
prompt={controlState.prompt}