From 66a38374ee07d01b4af67d76489ac21d6ec2d39b Mon Sep 17 00:00:00 2001 From: Dorota Czaplejewicz Date: Sat, 13 Oct 2018 20:46:53 +0000 Subject: [PATCH] text-input: Accept disable requests The disable signal on text-input objects must not be ignored. It is only sent when the previous state was enabled. --- rootston/text_input.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/rootston/text_input.c b/rootston/text_input.c index cca64353..70c92761 100644 --- a/rootston/text_input.c +++ b/rootston/text_input.c @@ -163,10 +163,6 @@ static void handle_text_input_disable(struct wl_listener *listener, text_input_disable); struct roots_text_input *text_input = text_input_to_roots(relay, (struct wlr_text_input_v3*)data); - if (!text_input->input->current_enabled) { - wlr_log(WLR_DEBUG, "Inactive text input tried to disable itself"); - return; - } relay_disable_text_input(relay, text_input); }