fix some more case sensitive shito
This commit is contained in:
parent
1afb8bfa46
commit
a2c12f7e66
|
@ -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…
Reference in New Issue