ime: feed committed string to client application

This commit is contained in:
Daniel Eklöf 2020-11-28 22:00:26 +01:00
parent e97024116e
commit b85e2f40bb
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

4
ime.c
View file

@ -1,5 +1,7 @@
#include "ime.h"
#include <string.h>
#include "text-input-unstable-v3.h"
#define LOG_MODULE "ime"
@ -72,7 +74,9 @@ static void
commit_string(void *data, struct zwp_text_input_v3 *zwp_text_input_v3,
const char *text)
{
struct seat *seat = data;
LOG_DBG("commit: text=%s", text);
term_to_slave(seat->kbd_focus, text, strlen(text));
}
static void