From 85c4e02493508f6e6c553fc35563768f42c17d8b Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sat, 20 Sep 2025 18:31:50 +1000 Subject: [PATCH] Qt: Remove redundant title update in Game Properties --- src/duckstation-qt/gamesummarywidget.cpp | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/duckstation-qt/gamesummarywidget.cpp b/src/duckstation-qt/gamesummarywidget.cpp index 5674fbe2c..c3dbdcca6 100644 --- a/src/duckstation-qt/gamesummarywidget.cpp +++ b/src/duckstation-qt/gamesummarywidget.cpp @@ -282,14 +282,8 @@ void GameSummaryWidget::setCustomRegion(int region) const GameList::Entry* entry = GameList::GetEntryForPath(m_path); if (entry) { - const std::string_view title = entry->GetDisplayTitle(GameList::ShouldShowLocalizedTitles()); - m_dialog->setGameTitle(title); - - { - const QSignalBlocker sb(m_ui.region); - m_ui.region->setCurrentIndex(static_cast(entry->region)); - } - + const QSignalBlocker sb(m_ui.region); + m_ui.region->setCurrentIndex(static_cast(entry->region)); m_ui.restoreRegion->setEnabled(entry->has_custom_region); } }