From 79f6baa494b29d71212a014edb8aade7967193b1 Mon Sep 17 00:00:00 2001 From: 1F616EMO Date: Sat, 29 Jun 2024 14:47:27 +0800 Subject: [PATCH] Remove the inconsistent and lag-causing usleep call in SDL_fcitx.c (cherry picked from commit 3bf2b90da09637059cac62a08ac42b630bbfa817) --- src/core/linux/SDL_fcitx.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/linux/SDL_fcitx.c b/src/core/linux/SDL_fcitx.c index 5c5db2890d..d86ee3d054 100644 --- a/src/core/linux/SDL_fcitx.c +++ b/src/core/linux/SDL_fcitx.c @@ -455,6 +455,5 @@ void SDL_Fcitx_PumpEvents(void) while (dbus->connection_dispatch(conn) == DBUS_DISPATCH_DATA_REMAINS) { /* Do nothing, actual work happens in DBus_MessageFilter */ - usleep(10); } }