Merge branch 'addButtons' into addI18n

This commit is contained in:
DD Liu 2017-08-23 11:00:46 -04:00
commit 4c528a6ad9
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ class BrushMode extends React.Component {
}
}
shouldComponentUpdate () {
return false; // Logic only component
return false; // Static component, for now
}
activateTool () {
// TODO: Instead of clearing selection, consider a kind of "draw inside"

View file

@ -33,7 +33,7 @@ class EraserMode extends React.Component {
}
}
shouldComponentUpdate () {
return false; // Logic only component
return false; // Static component, for now
}
activateTool () {
this.props.canvas.addEventListener('mousewheel', this.onScroll);