From 5398c80677815f11e34dc32e73dcc3177cca0c76 Mon Sep 17 00:00:00 2001 From: Sameer Puri Date: Thu, 28 Oct 2021 18:12:10 -0700 Subject: [PATCH] fix bug where circular interpolation is not applied when selected --- web/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/main.rs b/web/src/main.rs index a7b32c1..e797292 100644 --- a/web/src/main.rs +++ b/web/src/main.rs @@ -80,7 +80,7 @@ impl Component for App { }; let machine = Machine::new( SupportedFunctionality { - circular_interpolation: false, + circular_interpolation: app_state.circular_interpolation, }, app_state .tool_on_sequence