فهرست منبع

UI: Make drag and drop file ext. case insensitive

Fixes obsproject/obs-studio#4236
Anton Bershanskiy 4 سال پیش
والد
کامیت
7d5430f4ea
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      UI/window-basic-main-dropfiles.cpp

+ 1 - 1
UI/window-basic-main-dropfiles.cpp

@@ -247,7 +247,7 @@ void OBSBasic::dropEvent(QDropEvent *event)
 #define CHECK_SUFFIX(extensions, type)                         \
 	cmp = extensions;                                      \
 	while (*cmp) {                                         \
-		if (strcmp(*cmp, suffix) == 0) {               \
+		if (astrcmpi(*cmp, suffix) == 0) {             \
 			AddDropSource(QT_TO_UTF8(file), type); \
 			found = true;                          \
 			break;                                 \