diff --git a/src/guiengine/screen_keyboard.cpp b/src/guiengine/screen_keyboard.cpp index d3bbbdab0..707d9e2b9 100644 --- a/src/guiengine/screen_keyboard.cpp +++ b/src/guiengine/screen_keyboard.cpp @@ -167,7 +167,12 @@ void ScreenKeyboard::init() y = margin; } } - +#ifdef ANDROID + // This will allow emoji keyboard opening together with android screen + // keyboard + y += irr_driver->getDevice()->getMovedHeight(); +#endif + m_area = core::rect(x, y, x + w, y + h); m_irrlicht_window = GUIEngine::getGUIEnv()->addWindow(m_area, true);