mirror of
https://github.com/Doodle3D/Doodle3D-Core.git
synced 2024-12-22 19:13:49 +01:00
fix importing
This commit is contained in:
parent
9226bed73a
commit
4243bb8b61
@ -12,6 +12,7 @@ import vlineImageURL from '../../img/vline.png';
|
|||||||
import btnUndoImageURL from '../../img/mainmenu/btnUndo.png';
|
import btnUndoImageURL from '../../img/mainmenu/btnUndo.png';
|
||||||
import btnRedoImageURL from '../../img/mainmenu/btnRedo.png';
|
import btnRedoImageURL from '../../img/mainmenu/btnRedo.png';
|
||||||
import InlineIconsLoader from './InlineIconsLoader.js';
|
import InlineIconsLoader from './InlineIconsLoader.js';
|
||||||
|
import JSONToSketchData from '../shape/JSONToSketchData.js';
|
||||||
|
|
||||||
const styles = {
|
const styles = {
|
||||||
container: {
|
container: {
|
||||||
|
@ -212,7 +212,7 @@ function sketcherReducer(state = initialState, action) {
|
|||||||
let first = true;
|
let first = true;
|
||||||
for (const space of action.data.data.spaces) {
|
for (const space of action.data.data.spaces) {
|
||||||
if (first) {
|
if (first) {
|
||||||
state = addSpaceActive(state, space.matrix, 'world');
|
if (!state.spaces.world) state = addSpaceActive(state, space.matrix, 'world');
|
||||||
} else {
|
} else {
|
||||||
state = addSpaceActive(state, space.matrix);
|
state = addSpaceActive(state, space.matrix);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user