From 7cb49681e76ec84bc89a2e67943bec258f11e553 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 7 Feb 2021 11:11:58 +0100 Subject: [PATCH] ime: enter(): remove assertion on surface kind being TERM_SURF_GRID The main surface is the *only* IME capable surface we have. If the compositor is sending an ime::enter event for another surface, it is a compositor bug, not a foot bug. --- ime.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ime.c b/ime.c index 63e8cb9f..ad283455 100644 --- a/ime.c +++ b/ime.c @@ -25,11 +25,7 @@ enter(void *data, struct zwp_text_input_v3 *zwp_text_input_v3, LOG_DBG("enter: seat=%s", seat->name); /* The main grid is the *only* input-receiving surface we have */ - /* TODO: can we receive text_input::enter() _before_ keyboard_enter()? */ - struct terminal UNUSED *term = seat->kbd_focus; - xassert(term != NULL); - xassert(term_surface_kind(term, surface) == TERM_SURF_GRID); - + xassert(seat->kbd_focus != NULL); ime_enable(seat); }