diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-10-16 01:35:28 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-10-16 01:35:28 +0300 |
commit | 892ebc079a356a65d8ec5655613ae1653752d136 (patch) | |
tree | 595b4c395e990c1150256295aea6a3d070a9050e /ios | |
parent | 0aca32e4c0dd01d1e034b8b48e37370c405fbf6f (diff) |
Add dummy touch_ui_keyboard_visible()
Change-Id: Ib3de4092f48e16ac88108d6a69a04baf92a82de1
Diffstat (limited to 'ios')
-rw-r--r-- | ios/shared/ios_sharedlo/objective_c/gestures/MLOKeyboardManager.m | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ios/shared/ios_sharedlo/objective_c/gestures/MLOKeyboardManager.m b/ios/shared/ios_sharedlo/objective_c/gestures/MLOKeyboardManager.m index 05bf576dc531..c9c0b7a5d385 100644 --- a/ios/shared/ios_sharedlo/objective_c/gestures/MLOKeyboardManager.m +++ b/ios/shared/ios_sharedlo/objective_c/gestures/MLOKeyboardManager.m @@ -108,4 +108,11 @@ void touch_ui_hide_keyboard() }); } +bool touch_ui_keyboard_visible() +{ + // Should return info whether the soft keyboard is currently displayed, + // or a hardware keyboard is attached/paired. + return false; +} + @end |