Merge branch 'imbris/fix' into 'master'

Remove newline from password when pressing enter

See merge request veloren/veloren!887
This commit is contained in:
Imbris 2020-04-04 21:45:30 +00:00
commit e2c818b556

View File

@ -550,6 +550,7 @@ impl MainMenuUi {
self.password = password;
},
TextBoxEvent::Enter => {
self.password.pop();
login!();
},
}