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:
parent
74512719ae
commit
c081f92d39
1 changed files with 3 additions and 3 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Reference in a new issue