IME context detection.

This commit is contained in:
Saracen
2018-06-07 21:16:57 +01:00
parent 76875ba145
commit c5bdb5b1d8
11 changed files with 79 additions and 4 deletions

View File

@ -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);