Skip to content

Commit 7273700

Browse files
fix(ui): sharpness range
1 parent f909e81 commit 7273700

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

invokeai/frontend/web/src/features/controlLayers/components/RasterLayer/RasterLayerSimpleAdjustmentsEditor.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,8 @@ export const RasterLayerSimpleAdjustmentsEditor = memo(() => {
106106
label={t('controlLayers.adjustments.sharpness')}
107107
value={simple.sharpness}
108108
onChange={onSharpness}
109-
min={-0.5}
110-
max={0.5}
111-
step={0.01}
109+
min={0}
110+
max={1}
112111
/>
113112
</Flex>
114113
);

0 commit comments

Comments
 (0)