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:
parent
1afb8bfa46
commit
a2c12f7e66
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue