mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-22 20:47:45 +00:00
Add option to launch sys info
This commit is contained in:
parent
ad294867ca
commit
c267c68368
1 changed files with 5 additions and 0 deletions
|
@ -157,6 +157,11 @@ LauncherWindow::LauncherWindow(QWidget* parent) :
|
|||
launchExecutable({gamePath + "/boot/ffxivboot64.exe"});
|
||||
});
|
||||
|
||||
QAction* launchSysInfo = toolsMenu->addAction("Launch System Info...");
|
||||
connect(launchSysInfo, &QAction::triggered, [=] {
|
||||
launchExecutable({gamePath + "/boot/ffxivsysinfo64.exe"});
|
||||
});
|
||||
|
||||
const auto savedServerType = settings.value("serverType", 0).toInt();
|
||||
const auto savedLobbyURL = settings.value("lobbyURL", "127.0.0.1").toString();
|
||||
const auto shouldRememberUsername = settings.value("rememberUsername", false).toBool();
|
||||
|
|
Loading…
Add table
Reference in a new issue