Qt: Fix incorrect directories on Linux

This commit is contained in:
Connor McLaughlin
2022-07-23 00:01:47 +10:00
parent 23ea7b92bc
commit c90824f8e9
3 changed files with 6 additions and 10 deletions

View File

@ -154,7 +154,7 @@ void SettingsDialog::addPages()
addWidget(
m_folder_settings = new FolderSettingsWidget(this, m_ui.settingsContainer), tr("Folders"),
QStringLiteral("folder-settings-line"),
tr("<strong>Folder Settings</strong><hr>These options control where PCSX2 will save runtime data files."));
tr("<strong>Folder Settings</strong><hr>These options control where DuckStation will save runtime data files."));
}
addWidget(m_advanced_settings = new AdvancedSettingsWidget(this, m_ui.settingsContainer), tr("Advanced"),
@ -500,4 +500,4 @@ void SettingsDialog::openGamePropertiesDialog(const std::string& path, const std
dialog->setWindowTitle(window_title);
dialog->setModal(false);
dialog->show();
}
}