Skip to content
Snippets Groups Projects
Commit 9b936d51 authored by Ray Schamp's avatar Ray Schamp
Browse files

Remove unused onNewCostumeClick prop

parent 264f12d0
Branches
Tags
No related merge requests found
......@@ -128,7 +128,6 @@ TargetPane.propTypes = {
costumeLibraryVisible: React.PropTypes.bool,
editingTarget: React.PropTypes.string,
onNewBackdropClick: React.PropTypes.func,
onNewCostumeClick: React.PropTypes.func,
onNewSpriteClick: React.PropTypes.func,
onRequestCloseBackdropLibrary: React.PropTypes.func,
onRequestCloseCostumeLibrary: React.PropTypes.func,
......
......@@ -6,7 +6,6 @@ const {connect} = require('react-redux');
const {
openBackdropLibrary,
openCostumeLibrary,
openSpriteLibrary,
closeBackdropLibrary,
closeCostumeLibrary,
......@@ -60,10 +59,6 @@ const mapDispatchToProps = dispatch => ({
e.preventDefault();
dispatch(openBackdropLibrary());
},
onNewCostumeClick: e => {
e.preventDefault();
dispatch(openCostumeLibrary());
},
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