diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-04-01 15:31:52 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-04-01 15:31:52 +0200 |
| commit | 5cafa9d43b769e6f60740f59293ddf3588e7b8ad (patch) | |
| tree | a3d378cfbb91bec5c549e187e177a1fc327ef1fb /frontend/app/views/graph/graph.actions.js | |
| parent | 8c733583739517ff453d561f3b8fc5ca0d334819 (diff) | |
migration: add settings to uploads. cursor upload
Diffstat (limited to 'frontend/app/views/graph/graph.actions.js')
| -rw-r--r-- | frontend/app/views/graph/graph.actions.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frontend/app/views/graph/graph.actions.js b/frontend/app/views/graph/graph.actions.js index 6d5cb51..dbabbaf 100644 --- a/frontend/app/views/graph/graph.actions.js +++ b/frontend/app/views/graph/graph.actions.js @@ -30,6 +30,10 @@ export const toggleAudioList = () => dispatch => { dispatch({ type: types.graph.toggle_audio_list }) } +export const toggleCursorList = () => dispatch => { + dispatch({ type: types.graph.toggle_cursor_list }) +} + export const updateGraphPage = page => dispatch => { dispatch({ type: types.graph.update_graph_page, page }) } |
