summaryrefslogtreecommitdiff
path: root/src/params.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/params.rs')
-rw-r--r--src/params.rs9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/params.rs b/src/params.rs
index 00782ba..c895bca 100644
--- a/src/params.rs
+++ b/src/params.rs
@@ -1,7 +1,12 @@
//! Contains all types and implementations related to parameter management.
use crate::{RetainPluginMainThread, window_size::WindowSize};
-use clack_extensions::{params::*, state::PluginStateImpl};
+use clack_extensions::{
+ params::{
+ ParamDisplayWriter, ParamInfo, ParamInfoFlags, ParamInfoWriter, PluginMainThreadParams,
+ },
+ state::PluginStateImpl,
+};
use clack_plugin::{
events::{event_types::ParamValueEvent, spaces::CoreEventSpace},
prelude::*,
@@ -18,7 +23,7 @@ use std::{
/// The default value of the order parameter.
const DEFAULT_ORDER: usize = 1000;
-pub const DEFAULT_WINDOW_SIZE: WindowSize = WindowSize::Size128;
+pub const DEFAULT_WINDOW_SIZE: WindowSize = WindowSize::Size32768;
/// A struct that manages the parameters for our plugin.
///