@@ -14,8 +14,9 @@ import WavyLine from 'common/components/WavyLine';
14
14
import { selectImg2imgStrength , setImg2imgStrength } from 'features/controlLayers/store/paramsSlice' ;
15
15
import { selectActiveRasterLayerEntities } from 'features/controlLayers/store/selectors' ;
16
16
import { selectImg2imgStrengthConfig } from 'features/system/store/configSlice' ;
17
- import { memo , useCallback } from 'react' ;
17
+ import { memo , useCallback , useMemo } from 'react' ;
18
18
import { useTranslation } from 'react-i18next' ;
19
+ import { useSelectedModelConfig } from 'services/api/hooks/useSelectedModelConfig' ;
19
20
20
21
const selectHasRasterLayersWithContent = createSelector (
21
22
selectActiveRasterLayerEntities ,
@@ -26,6 +27,7 @@ export const ParamDenoisingStrength = memo(() => {
26
27
const img2imgStrength = useAppSelector ( selectImg2imgStrength ) ;
27
28
const dispatch = useAppDispatch ( ) ;
28
29
const hasRasterLayersWithContent = useAppSelector ( selectHasRasterLayersWithContent ) ;
30
+ const selectedModelConfig = useSelectedModelConfig ( ) ;
29
31
30
32
const onChange = useCallback (
31
33
( v : number ) => {
@@ -39,8 +41,24 @@ export const ParamDenoisingStrength = memo(() => {
39
41
40
42
const [ invokeBlue300 ] = useToken ( 'colors' , [ 'invokeBlue.300' ] ) ;
41
43
44
+ const isDisabled = useMemo ( ( ) => {
45
+ if ( ! hasRasterLayersWithContent ) {
46
+ // Denoising strength does nothing if there are no raster layers w/ content
47
+ return true ;
48
+ }
49
+ if (
50
+ selectedModelConfig ?. type === 'main' &&
51
+ selectedModelConfig ?. base === 'flux' &&
52
+ selectedModelConfig . variant === 'inpaint'
53
+ ) {
54
+ // Denoising strength is ignored by FLUX Fill, which is indicated by the variant being 'inpaint'
55
+ return true ;
56
+ }
57
+ return false ;
58
+ } , [ hasRasterLayersWithContent , selectedModelConfig ] ) ;
59
+
42
60
return (
43
- < FormControl isDisabled = { ! hasRasterLayersWithContent } p = { 1 } justifyContent = "space-between" h = { 8 } >
61
+ < FormControl isDisabled = { isDisabled } p = { 1 } justifyContent = "space-between" h = { 8 } >
44
62
< Flex gap = { 3 } alignItems = "center" >
45
63
< InformationalPopover feature = "paramDenoisingStrength" >
46
64
< FormLabel mr = { 0 } > { `${ t ( 'parameters.denoisingStrength' ) } ` } </ FormLabel >
@@ -49,7 +67,7 @@ export const ParamDenoisingStrength = memo(() => {
49
67
< WavyLine amplitude = { img2imgStrength * 10 } stroke = { invokeBlue300 } strokeWidth = { 1 } width = { 40 } height = { 14 } />
50
68
) }
51
69
</ Flex >
52
- { hasRasterLayersWithContent ? (
70
+ { ! isDisabled ? (
53
71
< >
54
72
< CompositeSlider
55
73
step = { config . coarseStep }
0 commit comments