mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2025-01-24 05:09:52 -05:00
Increase max size to 1
This commit is contained in:
parent
3574918f23
commit
e2fd966ae9
1 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ const ModeToolsComponent = props => {
|
||||||
<BufferedInput
|
<BufferedInput
|
||||||
small
|
small
|
||||||
max={MAX_STROKE_WIDTH}
|
max={MAX_STROKE_WIDTH}
|
||||||
min="0"
|
min="1"
|
||||||
type="number"
|
type="number"
|
||||||
value={props.brushValue}
|
value={props.brushValue}
|
||||||
onSubmit={props.onBrushSliderChange}
|
onSubmit={props.onBrushSliderChange}
|
||||||
|
@ -71,7 +71,7 @@ const ModeToolsComponent = props => {
|
||||||
<BufferedInput
|
<BufferedInput
|
||||||
small
|
small
|
||||||
max={MAX_STROKE_WIDTH}
|
max={MAX_STROKE_WIDTH}
|
||||||
min="0"
|
min="1"
|
||||||
type="number"
|
type="number"
|
||||||
value={props.eraserValue}
|
value={props.eraserValue}
|
||||||
onSubmit={props.onEraserSliderChange}
|
onSubmit={props.onEraserSliderChange}
|
||||||
|
|
Loading…
Reference in a new issue