mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-20 19:57:45 +00:00
Fill out url field on official Square Enix lobbies
This actually does nothing functionally, since the game fills out the lobby URL for you on launch - but it does make the settings look a bit nicer.
This commit is contained in:
parent
fb65e7e6e9
commit
c460f2d956
1 changed files with 5 additions and 1 deletions
|
@ -486,7 +486,11 @@ void SettingsWindow::reloadControls() {
|
||||||
encryptArgumentsBox->setChecked(profile.encryptArguments);
|
encryptArgumentsBox->setChecked(profile.encryptArguments);
|
||||||
serverType->setCurrentIndex(profile.isSapphire ? 1 : 0);
|
serverType->setCurrentIndex(profile.isSapphire ? 1 : 0);
|
||||||
lobbyServerURL->setEnabled(profile.isSapphire);
|
lobbyServerURL->setEnabled(profile.isSapphire);
|
||||||
lobbyServerURL->setText(profile.lobbyURL);
|
if(profile.isSapphire) {
|
||||||
|
lobbyServerURL->setText(profile.lobbyURL);
|
||||||
|
} else {
|
||||||
|
lobbyServerURL->setText("neolobby0X.ffxiv.com");
|
||||||
|
}
|
||||||
rememberUsernameBox->setChecked(profile.rememberUsername);
|
rememberUsernameBox->setChecked(profile.rememberUsername);
|
||||||
rememberPasswordBox->setChecked(profile.rememberPassword);
|
rememberPasswordBox->setChecked(profile.rememberPassword);
|
||||||
gameLicenseBox->setCurrentIndex((int)profile.license);
|
gameLicenseBox->setCurrentIndex((int)profile.license);
|
||||||
|
|
Loading…
Add table
Reference in a new issue