diff options
author | Moonchild <moonchild@palemoon.org> | 2021-02-21 10:32:47 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-02-21 10:32:47 +0000 |
commit | 98f6ad61f4f3c66209036db4bc7a4ae6ff4d1d3d (patch) | |
tree | 5d194dc3e53b4f5a4fa6b31b7756bf426fbe3cb9 /dom/html/HTMLInputElement.cpp | |
parent | 2b6effbf29cb4f7aa85e4f697c79c473cc4c9ea4 (diff) | |
download | uxp-98f6ad61f4f3c66209036db4bc7a4ae6ff4d1d3d.tar.gz |
[widget] Require user interaction when picking files or folders v2
Now with extra sauce to make it work cross-platform and cross-versions and
for HTML input elements only.
Diffstat (limited to 'dom/html/HTMLInputElement.cpp')
-rw-r--r-- | dom/html/HTMLInputElement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/html/HTMLInputElement.cpp b/dom/html/HTMLInputElement.cpp index 86d03d8f59..557e673e15 100644 --- a/dom/html/HTMLInputElement.cpp +++ b/dom/html/HTMLInputElement.cpp @@ -866,7 +866,7 @@ HTMLInputElement::InitFilePicker(FilePickerType aType) mode = static_cast<int16_t>(nsIFilePicker::modeOpen); } - nsresult rv = filePicker->Init(win, title, mode); + nsresult rv = filePicker->Init(win, title, mode, /*aRequireInteraction = */ true); NS_ENSURE_SUCCESS(rv, rv); if (!okButtonLabel.IsEmpty()) { |