mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
UX Copy Clean-up
This commit is contained in:
committed by
psychedelicious
parent
27a12f080b
commit
9273d1629e
@@ -2042,13 +2042,13 @@
|
||||
"ipAdapterMethod": "Mode",
|
||||
"full": "Style and Composition",
|
||||
"fullDesc": "Applies visual style (colors, textures) & composition (layout, structure).",
|
||||
"style": "Style Only",
|
||||
"styleDesc": "Applies visual style (colors, textures) without considering its layout.",
|
||||
"style": "Style (Simple)",
|
||||
"styleDesc": "Applies visual style (colors, textures) without considering its layout. Previously called Style Only.",
|
||||
"composition": "Composition Only",
|
||||
"compositionDesc": "Replicates layout & structure while ignoring the reference's style.",
|
||||
"styleStrong": "Style Strong",
|
||||
"styleStrong": "Style (Strong)",
|
||||
"styleStrongDesc": "Applies a strong visual style, with a slightly reduced composition influence.",
|
||||
"stylePrecise": "Style Precise",
|
||||
"stylePrecise": "Style (Precise)",
|
||||
"stylePreciseDesc": "Applies a precise visual style, eliminating subject influence."
|
||||
},
|
||||
"fluxReduxImageInfluence": {
|
||||
|
||||
@@ -30,11 +30,6 @@ export const IPAdapterMethod = memo(({ method, onChange }: Props) => {
|
||||
value: 'style',
|
||||
description: shouldShowModelDescriptions ? t('controlLayers.ipAdapterMethod.styleDesc') : undefined,
|
||||
},
|
||||
{
|
||||
label: t('controlLayers.ipAdapterMethod.composition'),
|
||||
value: 'composition',
|
||||
description: shouldShowModelDescriptions ? t('controlLayers.ipAdapterMethod.compositionDesc') : undefined,
|
||||
},
|
||||
{
|
||||
label: t('controlLayers.ipAdapterMethod.styleStrong'),
|
||||
value: 'style_strong',
|
||||
@@ -45,6 +40,11 @@ export const IPAdapterMethod = memo(({ method, onChange }: Props) => {
|
||||
value: 'style_precise',
|
||||
description: shouldShowModelDescriptions ? t('controlLayers.ipAdapterMethod.stylePreciseDesc') : undefined,
|
||||
},
|
||||
{
|
||||
label: t('controlLayers.ipAdapterMethod.composition'),
|
||||
value: 'composition',
|
||||
description: shouldShowModelDescriptions ? t('controlLayers.ipAdapterMethod.compositionDesc') : undefined,
|
||||
},
|
||||
],
|
||||
[t, shouldShowModelDescriptions]
|
||||
);
|
||||
|
||||
@@ -9234,7 +9234,7 @@ export type components = {
|
||||
* @default full
|
||||
* @enum {string}
|
||||
*/
|
||||
method?: "full" | "style" | "composition" | "style_strong" | "style_precise";
|
||||
method?: "full" | "style" | "style_strong" | "style_precise" | "composition";
|
||||
/**
|
||||
* Begin Step Percent
|
||||
* @description When the IP-Adapter is first applied (% of total steps)
|
||||
|
||||
Reference in New Issue
Block a user