From 6b521c152ebcef881247181426310a576ea10413 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 14 Nov 2021 16:11:39 -0800 Subject: [PATCH] Show the alert on the the dragEnterEvent --- desktop/src/onionshare/tab/mode/file_selection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/src/onionshare/tab/mode/file_selection.py b/desktop/src/onionshare/tab/mode/file_selection.py index ea80de53..40ca1685 100644 --- a/desktop/src/onionshare/tab/mode/file_selection.py +++ b/desktop/src/onionshare/tab/mode/file_selection.py @@ -187,6 +187,7 @@ class FileList(QtWidgets.QListWidget): """ # Drag and drop doesn't work in Flatpak, because of the sandbox if self.common.platform == "Linux" and os.path.exists("/app/manifest.json"): + Alert(self.common, strings._("gui_dragdrop_sandbox_flatpak").format()) event.ignore() return @@ -242,7 +243,6 @@ class FileList(QtWidgets.QListWidget): """ # Drag and drop doesn't work in Flatpak, because of the sandbox if self.common.platform == "Linux" and os.path.exists("/app/manifest.json"): - Alert(self.common, strings._("gui_dragdrop_sandbox_flatpak").format()) event.ignore() return