From 406372638e982dec85db7af6f2cce94cc05f0f4e Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Tue, 5 May 2020 21:21:57 +0200 Subject: [PATCH] Fix typo in linux native binding --- native/liblinuxbridge/bridge.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/liblinuxbridge/bridge.cpp b/native/liblinuxbridge/bridge.cpp index e7cb2f4..99f13e9 100644 --- a/native/liblinuxbridge/bridge.cpp +++ b/native/liblinuxbridge/bridge.cpp @@ -338,7 +338,7 @@ void fast_send_string(const char * string, int32_t delay) { XGetInputFocus(xdo_context->xdpy, &focused, &revert_to); int actual_delay = 1; - if delay > 0 { + if (delay > 0) { actual_delay = delay * 1000; }