aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/qt_sdl
diff options
context:
space:
mode:
authorArisotura <thetotalworm@gmail.com>2021-04-26 15:50:02 +0200
committerArisotura <thetotalworm@gmail.com>2021-04-26 15:50:02 +0200
commita2c12f7e669f9dba394001186a7254fa917e2495 (patch)
treed49aaedf856f59ae747dc0c868d73f8d99b710d2 /src/frontend/qt_sdl
parent1afb8bfa46eaaa7cc25bde6e6b40ea9ac5db5c9e (diff)
fix some more case sensitive shito
Diffstat (limited to 'src/frontend/qt_sdl')
-rw-r--r--src/frontend/qt_sdl/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/qt_sdl/main.cpp b/src/frontend/qt_sdl/main.cpp
index 5f04e00..cc71473 100644
--- a/src/frontend/qt_sdl/main.cpp
+++ b/src/frontend/qt_sdl/main.cpp
@@ -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();
}
}