diff options
author | Saracen <SaracenOne@gmail.com> | 2018-06-07 21:16:57 +0100 |
---|---|---|
committer | Saracen <SaracenOne@gmail.com> | 2018-06-11 17:22:11 +0100 |
commit | c5bdb5b1d8893abaf171520412479fb31a697a41 (patch) | |
tree | 7fb2d0216e5496c19ecb52ea9b4e0dc1155f4816 /core/bind/core_bind.cpp | |
parent | 76875ba145c5745033d0a1c9fda2f4349e2509b3 (diff) |
IME context detection.
Diffstat (limited to 'core/bind/core_bind.cpp')
-rw-r--r-- | core/bind/core_bind.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp index b7f20588f2..372cff4412 100644 --- a/core/bind/core_bind.cpp +++ b/core/bind/core_bind.cpp @@ -348,6 +348,11 @@ bool _OS::get_borderless_window() const { return OS::get_singleton()->get_borderless_window(); } +void _OS::set_ime_active(const bool p_active) { + + return OS::get_singleton()->set_ime_active(p_active); +} + void _OS::set_ime_position(const Point2 &p_pos) { return OS::get_singleton()->set_ime_position(p_pos); |