From 6686b6765992f86c208949925c1c3c09cbb31353 Mon Sep 17 00:00:00 2001 From: ozpv <39195175+ozpv@users.noreply.github.com> Date: Sun, 17 May 2026 17:46:35 -0500 Subject: Add sliding hann window --- src/gui.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/gui.rs') diff --git a/src/gui.rs b/src/gui.rs index 3d2dfb2..9216d5a 100644 --- a/src/gui.rs +++ b/src/gui.rs @@ -45,7 +45,7 @@ impl RetainPluginGui { pub fn new(parent: Window<'_>, plugin_state: &RetainPluginShared) -> Self { let settings = WindowOpenOptions { title: "Retain".to_string(), - size: Size::new(1000.0, 500.0), + size: Size::new(600.0, 350.0), scale: WindowScalePolicy::SystemScaleFactor, gl_config: Some(GlConfig::default()), }; @@ -166,8 +166,8 @@ impl PluginGuiImpl for RetainPluginMainThread<'_> { fn get_size(&mut self) -> Option { Some(GuiSize { - width: 1000, - height: 500, + width: 600, + height: 350, }) } -- cgit v1.2.3