mirror of
https://github.com/minetest/minetest.git
synced 2024-11-14 14:30:31 +01:00
guiConfirmRegistration: Set focus to text field (#8761)
This commit is contained in:
parent
fa6bc699bc
commit
003af74213
|
@ -62,6 +62,7 @@ void GUIConfirmRegistration::removeChildren()
|
|||
for (gui::IGUIElement *i : children_copy)
|
||||
i->remove();
|
||||
}
|
||||
|
||||
void GUIConfirmRegistration::regenerateGui(v2u32 screensize)
|
||||
{
|
||||
acceptInput();
|
||||
|
@ -119,6 +120,7 @@ void GUIConfirmRegistration::regenerateGui(v2u32 screensize)
|
|||
gui::IGUIEditBox *e = Environment->addEditBox(m_pass_confirm.c_str(),
|
||||
rect2, true, this, ID_confirmPassword);
|
||||
e->setPasswordBox(true);
|
||||
Environment->setFocus(e);
|
||||
}
|
||||
|
||||
ypos += 60 * s;
|
||||
|
@ -218,8 +220,7 @@ bool GUIConfirmRegistration::OnEvent(const SEvent &event)
|
|||
|
||||
if (event.GUIEvent.EventType == gui::EGET_ELEMENT_FOCUS_LOST && isVisible()) {
|
||||
if (!canTakeFocus(event.GUIEvent.Element)) {
|
||||
dstream << "GUIConfirmRegistration: Not allowing focus "
|
||||
"change."
|
||||
dstream << "GUIConfirmRegistration: Not allowing focus change."
|
||||
<< std::endl;
|
||||
// Returning true disables focus change
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue
Block a user