From 9cbe1ed8d82a91d88a65e7a98adc9f3a18ece5cf Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Sun, 30 Jun 2024 14:41:16 +0200 Subject: [PATCH] fix release bind message --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 7bd7a04..b649c44 100644 --- a/src/main.rs +++ b/src/main.rs @@ -68,7 +68,7 @@ fn run_service(config: &Config) -> Result<()> { // run async event loop runtime.block_on(LocalSet::new().run_until(async { // run main loop - log::info!("Press Ctrl+Alt+Shift+Super to release the mouse"); + log::info!("Press {:?} to release the mouse", config.release_bind); let server = Server::new(config); server.run(config.capture_backend).await?;