diff --git a/packages/xod-client-electron/src/debugger/sendToSerialMiddleware.js b/packages/xod-client-electron/src/debugger/sendToSerialMiddleware.js index cc684875b..076ab0702 100644 --- a/packages/xod-client-electron/src/debugger/sendToSerialMiddleware.js +++ b/packages/xod-client-electron/src/debugger/sendToSerialMiddleware.js @@ -20,7 +20,8 @@ export default ({ getState }) => next => action => { const isTweakActionType = action.type === client.NODE_UPDATE_PROPERTY || - action.type === client.TWEAK_PULSE_SENT; + action.type === client.TWEAK_PULSE_SENT || + action.type === client.NODE_PROPERTY_TWEAKED; if (isTweakActionType && client.isSerialDebugRunning(state)) { const { id: nodeId, value = '', patchPath } = action.payload; const nodeType = R.compose( diff --git a/packages/xod-client/src/index.js b/packages/xod-client/src/index.js index e3134a9e1..fa9b782ff 100644 --- a/packages/xod-client/src/index.js +++ b/packages/xod-client/src/index.js @@ -30,6 +30,7 @@ import { TAB_CLOSE, INSTALL_LIBRARIES_COMPLETE, TWEAK_PULSE_SENT, + NODE_PROPERTY_TWEAKED, } from './editor/actionTypes'; import { SAVE_ALL, NODE_UPDATE_PROPERTY } from './project/actionTypes'; @@ -88,7 +89,11 @@ export { export { LOG_TAB_TYPE } from './debugger/constants'; export { MESSAGE_BUTTON_CLICKED } from './messages/actionTypes'; -export { TAB_CLOSE, INSTALL_LIBRARIES_COMPLETE } from './editor/actionTypes'; +export { + TAB_CLOSE, + INSTALL_LIBRARIES_COMPLETE, + NODE_PROPERTY_TWEAKED, +} from './editor/actionTypes'; export { SAVE_ALL, NODE_UPDATE_PROPERTY, @@ -184,6 +189,7 @@ export default Object.assign( TAB_CLOSE, SAVE_ALL, NODE_UPDATE_PROPERTY, + NODE_PROPERTY_TWEAKED, TWEAK_PULSE_SENT, INSTALL_LIBRARIES_COMPLETE, MESSAGE_BUTTON_CLICKED,