From 5f8fc42a3662fad9e96b91fd4eb0c823f227e84b Mon Sep 17 00:00:00 2001 From: Ji-hoon Lee Date: Wed, 9 Dec 2020 18:51:52 +0900 Subject: [PATCH] Add missing return key type and disabled setting Change-Id: I55f691a2b13e726d9904ec732d8b4ad9d8949be1 --- src/sclconnection-isf.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sclconnection-isf.cpp b/src/sclconnection-isf.cpp index 74b13e3..d8011fa 100644 --- a/src/sclconnection-isf.cpp +++ b/src/sclconnection-isf.cpp @@ -209,6 +209,8 @@ static void slot_ise_show(const scim::HelperAgent *agent, int ic, char *buf, siz #ifdef WEBSOCKET g_websocket.on_set_layout(ise_context.layout); g_websocket.on_update_cursor_position(ic, ise_context.cursor_pos); + g_websocket.on_set_return_key_type(ise_context.return_key_type); + g_websocket.on_set_return_key_disable(ise_context.return_key_disabled); g_websocket.on_show(ic); #endif } -- 2.34.1