From c11cdf1858cc89464cd7118d6109c7472c50e652 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Mon, 15 Jan 2024 14:32:26 +0800 Subject: [PATCH] ; * src/xterm.c (x_focus_frame): Insert missing unblock_input. --- src/xterm.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index fe398171754..c8a43785564 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -28828,7 +28828,10 @@ x_focus_frame (struct frame *f, bool noactivate) window. (bug#65116)*/ if (f == dpyinfo->x_focus_frame && !FRAME_HAS_MINIBUF_P (f)) - return; + { + unblock_input (); + return; + } #endif /* HAVE_GTK3 */ if (FRAME_X_EMBEDDED_P (f)) -- 2.39.5