diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2026-05-17 17:46:35 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-17 17:46:35 -0500 |
| commit | 6686b6765992f86c208949925c1c3c09cbb31353 (patch) | |
| tree | af5b3374618e3fec9519cd10a052330dbe38379c /src/gui.rs | |
| parent | 728e5d8395d74e72be86b5fad75acaa6fb219bc7 (diff) | |
Add sliding hann window
Diffstat (limited to 'src/gui.rs')
| -rw-r--r-- | src/gui.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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<GuiSize> { Some(GuiSize { - width: 1000, - height: 500, + width: 600, + height: 350, }) } |
