diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-06-19 10:10:09 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-06-19 10:10:09 +0200 |
commit | 4e01d8663e65a44ff58cec9e9d64bcc5a931226d (patch) | |
tree | d6a48150b549e77776046f0b88b27dc8ae1b52b5 /platform/linuxbsd/wayland/SCsub | |
parent | 5c30858ee1a2d4b8367e5bc0a3154ceaa512c6f4 (diff) | |
parent | be25e60f619dc38e4e8b4b4fa1da777fd0a0ec6b (diff) | |
download | redot-engine-4e01d8663e65a44ff58cec9e9d64bcc5a931226d.tar.gz |
Merge pull request #93021 from bruvzg/wl_ime
[Wayland] Implement IME support.
Diffstat (limited to 'platform/linuxbsd/wayland/SCsub')
-rw-r--r-- | platform/linuxbsd/wayland/SCsub | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/platform/linuxbsd/wayland/SCsub b/platform/linuxbsd/wayland/SCsub index add5bdb504..89b586845c 100644 --- a/platform/linuxbsd/wayland/SCsub +++ b/platform/linuxbsd/wayland/SCsub @@ -152,6 +152,16 @@ env.WAYLAND_API_CODE( ) env.WAYLAND_API_HEADER( + target="protocol/text_input.gen.h", + source="#thirdparty/wayland-protocols/unstable/text-input/text-input-unstable-v3.xml", +) + +env.WAYLAND_API_CODE( + target="protocol/text_input.gen.c", + source="#thirdparty/wayland-protocols/unstable/text-input/text-input-unstable-v3.xml", +) + +env.WAYLAND_API_HEADER( target="protocol/xdg_foreign.gen.h", source="#thirdparty/wayland-protocols/unstable/xdg-foreign/xdg-foreign-unstable-v1.xml", ) @@ -175,6 +185,7 @@ source_files = [ "protocol/primary_selection.gen.c", "protocol/idle_inhibit.gen.c", "protocol/tablet.gen.c", + "protocol/text_input.gen.c", "display_server_wayland.cpp", "wayland_thread.cpp", "key_mapping_xkb.cpp", |