mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 01:05:48 +01:00 
			
		
		
		
	guiConfirmRegistration: Set focus to text field (#8761)
This commit is contained in:
		@@ -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;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user