Qt: Better title bar for SFO Viewer menu (#2462)

This commit is contained in:
¥IGA
2025-02-17 11:38:17 +01:00
committed by GitHub
parent 195b94c1f1
commit b06790dfe5

View File

@@ -161,6 +161,7 @@ public:
if (selected == &openSfoViewer) { if (selected == &openSfoViewer) {
PSF psf; PSF psf;
QString gameName = QString::fromStdString(m_games[itemID].name);
std::filesystem::path game_folder_path = m_games[itemID].path; std::filesystem::path game_folder_path = m_games[itemID].path;
std::filesystem::path game_update_path = game_folder_path; std::filesystem::path game_update_path = game_folder_path;
game_update_path += "-UPDATE"; game_update_path += "-UPDATE";
@@ -234,7 +235,7 @@ public:
tableWidget->horizontalHeader()->setVisible(false); tableWidget->horizontalHeader()->setVisible(false);
tableWidget->horizontalHeader()->setSectionResizeMode(QHeaderView::Fixed); tableWidget->horizontalHeader()->setSectionResizeMode(QHeaderView::Fixed);
tableWidget->setWindowTitle(tr("SFO Viewer")); tableWidget->setWindowTitle(tr("SFO Viewer for ") + gameName);
tableWidget->show(); tableWidget->show();
} }
} }