mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-22 13:32:28 -05:00
move blob helper files
This commit is contained in:
parent
f325ae43ee
commit
a875bee81c
6 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
import paper from 'paper';
|
||||
import log from '../log/log';
|
||||
import log from '../../log/log';
|
||||
import BroadBrushHelper from './broad-brush-helper';
|
||||
import SegmentBrushHelper from './segment-brush-helper';
|
||||
import {styleCursorPreview} from './style-path';
|
|
@ -3,7 +3,7 @@ import React from 'react';
|
|||
import {connect} from 'react-redux';
|
||||
import bindAll from 'lodash.bindall';
|
||||
import Modes from '../modes/modes';
|
||||
import Blobbiness from '../modes/blob';
|
||||
import Blobbiness from './blob/blob';
|
||||
import {changeBrushSize} from '../reducers/brush-mode';
|
||||
|
||||
class BrushMode extends React.Component {
|
||||
|
|
|
@ -3,7 +3,7 @@ import React from 'react';
|
|||
import {connect} from 'react-redux';
|
||||
import bindAll from 'lodash.bindall';
|
||||
import Modes from '../modes/modes';
|
||||
import Blobbiness from '../modes/blob';
|
||||
import Blobbiness from './blob/blob';
|
||||
import {changeBrushSize} from '../reducers/eraser-mode';
|
||||
|
||||
class EraserMode extends React.Component {
|
||||
|
|
Loading…
Reference in a new issue