fix some more case sensitive shito

This commit is contained in:
Arisotura 2021-04-26 15:50:02 +02:00
parent 1afb8bfa46
commit a2c12f7e66
1 changed files with 1 additions and 1 deletions

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();
}
}