File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
shell/platform/tizen/channels Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -402,12 +402,11 @@ void TextInputChannel::SendStateUpdate(const flutter::TextInputModel& model) {
402
402
bool TextInputChannel::FilterEvent (Ecore_Event_Key* keyDownEvent) {
403
403
bool handled = false ;
404
404
405
- #ifdef TIZEN_RENDERER_EVAS_GL
406
- // Hardware keyboard not supported when running in Evas GL mode .
405
+ #ifdef WEARABLE_PROFILE
406
+ // Hardware keyboard not supported on watches .
407
407
bool isIME = true ;
408
408
#else
409
- bool isIME = ecore_imf_context_keyboard_mode_get (imf_context_) ==
410
- ECORE_IMF_INPUT_PANEL_SW_KEYBOARD_MODE;
409
+ bool isIME = strcmp (ecore_device_name_get (keyDownEvent->dev ), " ime" ) == 0 ;
411
410
#endif
412
411
413
412
Ecore_IMF_Event_Key_Down ecoreKeyDownEvent;
You can’t perform that action at this time.
0 commit comments