X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2FguiTextInputMenu.cpp;h=364f69903290a07224d14802d999d2de1401aa2e;hb=c0530921ffac89c2249500ba0a1bddd9d288cfbe;hp=bfe0ea5de259b0123a0d20f80a864f7049d92b5e;hpb=1d1aec9631e3ae077db6060f0fe19487b7b23aae;p=dragonfireclient.git diff --git a/src/guiTextInputMenu.cpp b/src/guiTextInputMenu.cpp index bfe0ea5de..364f69903 100644 --- a/src/guiTextInputMenu.cpp +++ b/src/guiTextInputMenu.cpp @@ -21,6 +21,11 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "debug.h" #include "serialization.h" #include +#include +#include +#include +#include +#include #include "gettext.h" @@ -103,6 +108,12 @@ void GUITextInputMenu::regenerateGui(v2u32 screensize) gui::IGUIElement *e = Environment->addEditBox(text.c_str(), rect, true, this, 256); Environment->setFocus(e); + + irr::SEvent evt; + evt.EventType = EET_KEY_INPUT_EVENT; + evt.KeyInput.Key = KEY_END; + evt.KeyInput.PressedDown = true; + e->OnEvent(evt); } changeCtype(""); {