From cb04d370b26eec57b4efbd159577c2c702181fa6 Mon Sep 17 00:00:00 2001 From: Raphael Forment Date: Sun, 19 Nov 2023 15:29:42 +0100 Subject: [PATCH] Lower fftSize of the auto-scope --- src/main.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 90721f3..4abdd20 100644 --- a/src/main.ts +++ b/src/main.ts @@ -191,11 +191,12 @@ export class Editor { // this.setPeriodicSave(5000); // ================================================================================ - // Displaying a scope by default! + // Displaying a scope by default // ================================================================================ this.api.scope({ enabled: true, mode: "freqscope", + fftSize: 256, offsetY: window.innerWidth / 3.5, size: 0.80 } as OscilloscopeConfig) }