diff --git a/src/common/helpers.py b/src/common/helpers.py
index f1277ec3273fc5d0baa4d9a741071c42c7af76de..baa087eb70bb8b124db35b49e3311a2ac6e098eb 100644
--- a/src/common/helpers.py
+++ b/src/common/helpers.py
@@ -267,7 +267,9 @@ def get_file_path_from_dnd_dropped_uri(uri):
 	path = urllib.url2pathname(uri) # escape special chars
 	path = path.strip('\r\n\x00') # remove \r\n and NULL
 	# get the path to file
-	if path.startswith('file://'): # nautilus, rox
+	if path.startswith('file:\\\\\\'): # windows
+		path = path[8:] # 8 is len('file:///')
+	elif path.startswith('file://'): # nautilus, rox
 		path = path[7:] # 7 is len('file://')
 	elif path.startswith('file:'): # xffm
 		path = path[5:] # 5 is len('file:')