Skip to content

Commit

Permalink
Increase render debounce time to reduce redundant calls
Browse files Browse the repository at this point in the history
  • Loading branch information
annehaley committed Dec 15, 2023
1 parent 587fb47 commit c9c4483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/shapeworks/src/views/Main.vue
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ export default {
renderMetaData.value = newRenderMetaData
}
const debouncedRefreshRender = _.debounce(refreshRender, 300)
const debouncedRefreshRender = _.debounce(refreshRender, 1000)
watch(drawer, prepareDrawer)
watch(selectedDataObjects, debouncedRefreshRender)
Expand Down

0 comments on commit c9c4483

Please sign in to comment.