This commit is contained in:
Vladislav Khorev 2013-08-04 09:23:45 +00:00
parent c20fd99897
commit 554d35f27b

View File

@ -383,7 +383,9 @@ void TGUIManager::OnMove(vec2 shift)
void TGUIManager::ShowKeyboard(const std::string text) void TGUIManager::ShowKeyboard(const std::string text)
{ {
#ifdef TARGET_IOS
SE::ShowKeyboard(text); SE::ShowKeyboard(text);
#endif
/* /*
if (!KeyboardIsOnScreen) if (!KeyboardIsOnScreen)
{ {
@ -396,6 +398,9 @@ void TGUIManager::ShowKeyboard(const std::string text)
void TGUIManager::HideKeyboard() void TGUIManager::HideKeyboard()
{ {
ResourceManager->GUIManager.SetTextSignal.disconnect_all_slots(); ResourceManager->GUIManager.SetTextSignal.disconnect_all_slots();
#ifdef TARGET_IOS
SE::HideKeyboard();
#endif
/* /*
if (KeyboardIsOnScreen) if (KeyboardIsOnScreen)
{ {