From d545c6ca0fd691a369c782d877d6a278166c221c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Poizl?= Date: Wed, 26 Feb 2025 20:43:46 +0100 Subject: [PATCH] Do not prepend \\ to network share paths --- loadimage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loadimage.cpp b/loadimage.cpp index c844ceb..14e5b9c 100644 --- a/loadimage.cpp +++ b/loadimage.cpp @@ -12,7 +12,7 @@ QString makeMaxPath(QString path) { #ifdef Q_OS_WIN64 - if(!path.startsWith("\\\\?\\")) + if(!path.startsWith("\\\\")) { QFileInfo info(path); path = info.absoluteFilePath();