summaryrefslogtreecommitdiff
path: root/mozilla-1576268.patch
diff options
context:
space:
mode:
Diffstat (limited to 'mozilla-1576268.patch')
-rw-r--r--mozilla-1576268.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/mozilla-1576268.patch b/mozilla-1576268.patch
deleted file mode 100644
index 85fd1a8..0000000
--- a/mozilla-1576268.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/widget/gtk/nsClipboardWayland.cpp b/widget/gtk/nsClipboardWayland.cpp
---- a/widget/gtk/nsClipboardWayland.cpp
-+++ b/widget/gtk/nsClipboardWayland.cpp
-@@ -195,6 +195,12 @@
- uint32_t all_actions = WL_DATA_DEVICE_MANAGER_DND_ACTION_COPY |
- WL_DATA_DEVICE_MANAGER_DND_ACTION_MOVE;
-
-+ /* Default to move D&D action (Bug 1576268).
-+ */
-+ if (dnd_actions == 0) {
-+ all_actions = WL_DATA_DEVICE_MANAGER_DND_ACTION_MOVE;
-+ }
-+
- wl_data_offer_set_actions(mWaylandDataOffer, all_actions, dnd_actions);
-
- /* Workaround Wayland D&D architecture here. To get the data_device_drop()
-
bgstack15