summaryrefslogtreecommitdiff
path: root/frontend/app/views/graph/graph.actions.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2021-04-01 15:31:52 +0200
committerJules Laplace <julescarbon@gmail.com>2021-04-01 15:31:52 +0200
commit5cafa9d43b769e6f60740f59293ddf3588e7b8ad (patch)
treea3d378cfbb91bec5c549e187e177a1fc327ef1fb /frontend/app/views/graph/graph.actions.js
parent8c733583739517ff453d561f3b8fc5ca0d334819 (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.js4
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 })
}