From b638b2b9ca530f075d845de1f3843e2d28a34eee Mon Sep 17 00:00:00 2001 From: DD Date: Fri, 4 May 2018 13:35:19 -0400 Subject: [PATCH] Listen to undo state in fixedTools --- src/components/fixed-tools/fixed-tools.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/fixed-tools/fixed-tools.jsx b/src/components/fixed-tools/fixed-tools.jsx index 0c1eeb45..514755f3 100644 --- a/src/components/fixed-tools/fixed-tools.jsx +++ b/src/components/fixed-tools/fixed-tools.jsx @@ -301,7 +301,8 @@ FixedToolsComponent.propTypes = { const mapStateToProps = state => ({ format: state.scratchPaint.format, - selectedItems: state.scratchPaint.selectedItems + selectedItems: state.scratchPaint.selectedItems, + undoState: state.scratchPaint.undo }); export default connect(