mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2025-01-09 06:02:05 -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
|
||||
small
|
||||
max={MAX_STROKE_WIDTH}
|
||||
min="0"
|
||||
min="1"
|
||||
type="number"
|
||||
value={props.brushValue}
|
||||
onSubmit={props.onBrushSliderChange}
|
||||
|
@ -71,7 +71,7 @@ const ModeToolsComponent = props => {
|
|||
<BufferedInput
|
||||
small
|
||||
max={MAX_STROKE_WIDTH}
|
||||
min="0"
|
||||
min="1"
|
||||
type="number"
|
||||
value={props.eraserValue}
|
||||
onSubmit={props.onEraserSliderChange}
|
||||
|
|
Loading…
Reference in a new issue