mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 04:14:00 +00:00
Qt: fix filename used for thumbnail download
This commit is contained in:
parent
adb72755e1
commit
78f5aba04b
@ -120,12 +120,10 @@ void MainWindow::onFileDropWidgetContextMenuRequested(const QPoint &pos)
|
||||
{
|
||||
QHash<QString, QString> hash = getCurrentContentHash();
|
||||
QString system = QFileInfo(getCurrentPlaylistPath()).completeBaseName();
|
||||
QString path = hash.value("label");
|
||||
QString title = hash.value("label");
|
||||
|
||||
if (!path.isEmpty())
|
||||
if (!title.isEmpty())
|
||||
{
|
||||
QString title = QFileInfo(path).completeBaseName();
|
||||
|
||||
if (m_pendingThumbnailDownloadTypes.isEmpty())
|
||||
{
|
||||
m_pendingThumbnailDownloadTypes.append(THUMBNAIL_BOXART);
|
||||
|
Loading…
x
Reference in New Issue
Block a user