Skip to content

Commit 37f65d7

Browse files
committed
increase stroke limit to 9999
in pm we can just expect the user to use this properly despite scratchfoundation#768
1 parent 19f5de0 commit 37f65d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/reducers/stroke-width.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {CHANGE_SELECTED_ITEMS} from './selected-items';
33
import {getColorsFromSelection} from '../helper/style-path';
44

55
const CHANGE_STROKE_WIDTH = 'scratch-paint/stroke-width/CHANGE_STROKE_WIDTH';
6-
const MAX_STROKE_WIDTH = 100;
6+
const MAX_STROKE_WIDTH = 9999; // NOTE: in pm we can just expect the user to use this properly despite https://github.com/scratchfoundation/scratch-paint/issues/768
77
const initialState = 4;
88

99
const reducer = function (state, action) {

0 commit comments

Comments
 (0)