Merge pull request #17 from BlurrySquire/fix-clang

Fix clang
This commit is contained in:
Riley Hawksworth 2024-03-27 20:16:18 +00:00 committed by GitHub
commit a2af4e3e9b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3060,8 +3060,8 @@ void GMainWindow::UpdateWindowTitle() {
setWindowTitle(QStringLiteral("Lime %1 | %2").arg(full_name, game_title));
render_window->setWindowTitle(
QStringLiteral("Lime %1 | %2 | %3").arg(full_name, game_title, tr("Primary Window")));
secondary_window->setWindowTitle(QStringLiteral("Lime %1 | %2 | %3")
.arg(full_name, game_title, tr("Secondary Window")));
secondary_window->setWindowTitle(
QStringLiteral("Lime %1 | %2 | %3").arg(full_name, game_title, tr("Secondary Window")));
}
}