1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 19:57:45 +00:00

Rename some profile login options

Removes the weird "?" at the end of a bunch of options
This commit is contained in:
Joshua Goins 2022-02-25 17:10:35 -05:00
parent 74512719ae
commit c081f92d39

View file

@ -191,7 +191,7 @@ SettingsWindow::SettingsWindow(LauncherWindow& window, LauncherCore& core, QWidg
this->core.saveSettings();
});
loginBoxLayout->addRow("Remember Username?", rememberUsernameBox);
loginBoxLayout->addRow("Remember Username", rememberUsernameBox);
rememberPasswordBox = new QCheckBox();
connect(rememberPasswordBox, &QCheckBox::stateChanged, [=](int) {
@ -200,7 +200,7 @@ SettingsWindow::SettingsWindow(LauncherWindow& window, LauncherCore& core, QWidg
this->core.saveSettings();
});
loginBoxLayout->addRow("Remember Password?", rememberPasswordBox);
loginBoxLayout->addRow("Remember Password", rememberPasswordBox);
useSteamBox = new QCheckBox();
connect(useSteamBox, &QCheckBox::stateChanged, [=](int) {
@ -208,7 +208,7 @@ SettingsWindow::SettingsWindow(LauncherWindow& window, LauncherCore& core, QWidg
this->core.saveSettings();
});
loginBoxLayout->addRow("Use Steam?", useSteamBox);
loginBoxLayout->addRow("Is Steam Account", useSteamBox);
#if defined(Q_OS_MAC) || defined(Q_OS_LINUX)
auto wineBox = new QGroupBox("Wine Options");