diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-14 04:02:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-14 04:02:08 +0200 |
commit | 31f338bb361d740a23f0e4edcbd36f846f439d17 (patch) | |
tree | cddf175be86ac9daa42da3685e25576825bb2ed7 | |
parent | e4a1560433010903ed1bb442a4e22cf2501d4b86 (diff) | |
parent | 66a38374ee07d01b4af67d76489ac21d6ec2d39b (diff) | |
download | wlroots-31f338bb361d740a23f0e4edcbd36f846f439d17.tar.xz |
Merge pull request #1308 from dcz-purism/fix_disable_text_input
text-input: Accept disable requests
-rw-r--r-- | rootston/text_input.c | 4 |
1 files changed, 0 insertions, 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); } |