Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions project/src/backend/sdl/SDLApplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ namespace lime {

case SDL_TEXTINPUT:
case SDL_TEXTEDITING:
case SDL_TEXTEDITING_EXT:

ProcessTextEvent (event);
break;
Expand Down
2 changes: 2 additions & 0 deletions project/src/backend/sdl/SDLWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ namespace lime {
SDL_SetHint (SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH, "1");
SDL_SetHint (SDL_HINT_MOUSE_TOUCH_EVENTS, "0");
SDL_SetHint (SDL_HINT_TOUCH_MOUSE_EVENTS, "1");
SDL_SetHint (SDL_HINT_IME_SHOW_UI, "1");
SDL_SetHint (SDL_HINT_IME_SUPPORT_EXTENDED_TEXT, "1");
#endif

if (flags & WINDOW_FLAG_HARDWARE) {
Expand Down