Qt: Use serials by default for cover filenames with downloader

This commit is contained in:
TheTechnician27 2024-07-20 07:25:50 -05:00 committed by Ty
parent 6b6993cc24
commit 02e0d2acde
2 changed files with 4 additions and 4 deletions

View File

@ -91,7 +91,7 @@ void CoverDownloadDialog::updateEnabled()
void CoverDownloadDialog::startThread()
{
m_thread = std::make_unique<CoverDownloadThread>(this, m_ui.urls->toPlainText(), m_ui.useSerialFileNames->isChecked());
m_thread = std::make_unique<CoverDownloadThread>(this, m_ui.urls->toPlainText(), !m_ui.useTitleFileNames->isChecked());
m_last_refresh_time.Reset();
connect(m_thread.get(), &CoverDownloadThread::statusUpdated, this, &CoverDownloadDialog::onDownloadStatus);
connect(m_thread.get(), &CoverDownloadThread::progressUpdated, this, &CoverDownloadDialog::onDownloadProgress);

View File

@ -60,7 +60,7 @@
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>By default, the downloaded covers will be saved with the game's title. If this is not desired, you can check the &quot;Use Serial File Names&quot; box below. Using serials instead of game titles will prevent conflicts when multiple regions of the same game are used.</string>
<string>By default, the downloaded covers will be saved with the game's serial to ensure covers do not break with GameDB changes and that titles with multiple regions do not conflict. If this is not desired, you can check the &quot;Use Title File Names&quot; box below.</string>
</property>
<property name="wordWrap">
<bool>true</bool>
@ -68,9 +68,9 @@
</widget>
</item>
<item>
<widget class="QCheckBox" name="useSerialFileNames">
<widget class="QCheckBox" name="useTitleFileNames">
<property name="text">
<string>Use Serial File Names</string>
<string>Use Title File Names</string>
</property>
</widget>
</item>