Skip to content
Snippets Groups Projects
Commit e271eed9 authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Remove unused sound callback

parent 9e9a4f44
Branches
Tags
No related merge requests found
......@@ -162,7 +162,6 @@ TargetPane.propTypes = {
onChangeSpriteY: React.PropTypes.func,
onDeleteSprite: React.PropTypes.func,
onNewBackdropClick: React.PropTypes.func,
onNewSoundClick: React.PropTypes.func,
onNewSpriteClick: React.PropTypes.func,
onRequestCloseBackdropLibrary: React.PropTypes.func,
onRequestCloseCostumeLibrary: React.PropTypes.func,
......
......@@ -5,7 +5,6 @@ const {connect} = require('react-redux');
const {
openBackdropLibrary,
openSoundLibrary,
openSpriteLibrary,
closeBackdropLibrary,
closeCostumeLibrary,
......@@ -99,10 +98,6 @@ const mapDispatchToProps = dispatch => ({
e.preventDefault();
dispatch(openBackdropLibrary());
},
onNewSoundClick: e => {
e.preventDefault();
dispatch(openSoundLibrary());
},
onNewSpriteClick: e => {
e.preventDefault();
dispatch(openSpriteLibrary());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment