From 99ca2cc5f5b04b76b621f1fbd835dae0682fbef4 Mon Sep 17 00:00:00 2001 From: Colton Hurst Date: Mon, 4 Aug 2025 09:41:08 -0400 Subject: [PATCH] Remove block_input --- apps/desktop/desktop_native/autotype/src/windows.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/desktop/desktop_native/autotype/src/windows.rs b/apps/desktop/desktop_native/autotype/src/windows.rs index 931c111e2f5..fa5961ee3bc 100644 --- a/apps/desktop/desktop_native/autotype/src/windows.rs +++ b/apps/desktop/desktop_native/autotype/src/windows.rs @@ -38,9 +38,9 @@ pub fn type_input(input: Vec) -> Result<(), ()> { keyboard_inputs.push(next_up_input); } - let _ = block_input(true); + //let _ = block_input(true); let result = send_input(keyboard_inputs); - let _ = block_input(false); + //let _ = block_input(false); result }