diff --git a/src/lib.rs b/src/lib.rs index d945794..2404d46 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -89,8 +89,7 @@ pub struct FullThrottlePlugin { impl Plugin for FullThrottlePlugin { fn build(&self, app: &mut App) { - app.add_plugins(TerminalCtrlCHandlerPlugin) - .insert_resource(*self) + app.insert_resource(*self) .add_systems(Startup, setup) .add_systems(PostUpdate, (focus_change, exit)); }