diff --git a/src/wrapper/standalone/wrapper.rs b/src/wrapper/standalone/wrapper.rs index 98b1371a..8adc14eb 100644 --- a/src/wrapper/standalone/wrapper.rs +++ b/src/wrapper/standalone/wrapper.rs @@ -281,9 +281,10 @@ impl Wrapper { ) } None => { - // TODO: Block until SIGINT is received if the plugin does not have an editor + // TODO: Properly block until SIGINT is received if the plugin does not have an editor // TODO: Make sure to handle `GuiTask::Close` here as well - todo!("Support standalone plugins without editors"); + nih_log!("{} does not have a GUI, blocking indefinitely...", P::NAME); + std::thread::park(); } }