mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-30 02:49:41 -06:00
fix some more case sensitive shito
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user