sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit c88f7ad1d0a59fc0994ae353551133733de6ee07
parent b0e8f4ade2e6e7831671faa05bdfd2cac0059adf
Author: Tadeo Kondrak <me@tadeo.ca>
Date:   Mon,  8 Feb 2021 11:35:05 -0700

text_input: Only send surrounding_text and content_type if supported

Diffstat:
Msway/input/text_input.c | 15++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/sway/input/text_input.c b/sway/input/text_input.c @@ -92,13 +92,18 @@ static void relay_send_im_state(struct sway_input_method_relay *relay, return; } // TODO: only send each of those if they were modified - wlr_input_method_v2_send_surrounding_text(input_method, - input->current.surrounding.text, input->current.surrounding.cursor, - input->current.surrounding.anchor); + if (input->active_features & WLR_TEXT_INPUT_V3_FEATURE_SURROUNDING_TEXT) { + wlr_input_method_v2_send_surrounding_text(input_method, + input->current.surrounding.text, input->current.surrounding.cursor, + input->current.surrounding.anchor); + } wlr_input_method_v2_send_text_change_cause(input_method, input->current.text_change_cause); - wlr_input_method_v2_send_content_type(input_method, - input->current.content_type.hint, input->current.content_type.purpose); + if (input->active_features & WLR_TEXT_INPUT_V3_FEATURE_CONTENT_TYPE) { + wlr_input_method_v2_send_content_type(input_method, + input->current.content_type.hint, + input->current.content_type.purpose); + } wlr_input_method_v2_send_done(input_method); // TODO: pass intent, display popup size }