1
0
Fork 0
mirror of https://github.com/melonDS-emu/melonDS.git synced 2025-03-06 21:00:31 +01:00

fix some more case sensitive shito

This commit is contained in:
Arisotura 2021-04-26 15:50:02 +02:00
parent 1afb8bfa46
commit a2c12f7e66

View file

@ -1569,7 +1569,7 @@ void MainWindow::dragEnterEvent(QDragEnterEvent* event)
for(const QString &ext : acceptedExts)
{
if(filename.endsWith(ext))
if(filename.endsWith(ext, Qt::CaseInsensitive))
event->acceptProposedAction();
}
}