1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-25 13:17:46 +00:00

sagasu: Fix bug where it's impossible to extract files

This commit is contained in:
Joshua Goins 2023-10-13 15:00:48 -04:00
parent bf5c2feb80
commit 795bb30935

View file

@ -48,7 +48,7 @@ FileTreeWindow::FileTreeWindow(QString gamePath, GameData *data, QWidget *parent
auto index = treeWidget->indexAt(pos); auto index = treeWidget->indexAt(pos);
if (index.isValid()) { if (index.isValid()) {
auto path = m_fileModel->data(index, Qt::UserRole).toString(); auto path = m_searchModel->data(index, Qt::UserRole).toString();
auto menu = new QMenu(); auto menu = new QMenu();