summaryrefslogtreecommitdiff
path: root/src/gui.rs
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2026-05-17 17:46:35 -0500
committerGitHub <noreply@github.com>2026-05-17 17:46:35 -0500
commit6686b6765992f86c208949925c1c3c09cbb31353 (patch)
treeaf5b3374618e3fec9519cd10a052330dbe38379c /src/gui.rs
parent728e5d8395d74e72be86b5fad75acaa6fb219bc7 (diff)
Add sliding hann window
Diffstat (limited to 'src/gui.rs')
-rw-r--r--src/gui.rs6
1 files changed, 3 insertions, 3 deletions
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<GuiSize> {
Some(GuiSize {
- width: 1000,
- height: 500,
+ width: 600,
+ height: 350,
})
}