From 5bc9211c90929e17094914b8accc03f627599074 Mon Sep 17 00:00:00 2001 From: Riley Hawksworth Date: Sun, 31 Mar 2024 00:02:03 +0000 Subject: [PATCH] Hopefully fixed clang-format errors. --- src/lime_qt/main.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/lime_qt/main.cpp b/src/lime_qt/main.cpp index 8b7fe0d7f..b14adfe47 100644 --- a/src/lime_qt/main.cpp +++ b/src/lime_qt/main.cpp @@ -3061,11 +3061,9 @@ void GMainWindow::UpdateWindowTitle() { if (game_title_long.isEmpty()) { setWindowTitle(QStringLiteral("Lime %1").arg(full_name)); } else { - setWindowTitle(QStringLiteral("Lime %1 | %2") - .arg(full_name, game_title_long)); - render_window->setWindowTitle( - QStringLiteral("Lime %1 | %2 | %3") - .arg(full_name, game_title_long, tr("Primary Window"))); + setWindowTitle(QStringLiteral("Lime %1 | %2").arg(full_name, game_title_long)); + render_window->setWindowTitle(QStringLiteral("Lime %1 | %2 | %3") + .arg(full_name, game_title_long, tr("Primary Window"))); secondary_window->setWindowTitle( QStringLiteral("Lime %1 | %2 | %3") .arg(full_name, game_title_long, tr("Secondary Window")));