summaryrefslogtreecommitdiff
path: root/mail/thunderbird/files/patch-bug1186967
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2018-07-18 23:44:21 +0000
committerJan Beich <jbeich@FreeBSD.org>2018-07-18 23:44:21 +0000
commite344179e4710fcd9e8b27f21ad966399c6676062 (patch)
tree25470098899348b52b879360dae665e7d4b833ee /mail/thunderbird/files/patch-bug1186967
parent- missed a '+" (diff)
mail/thunderbird: drop patches in preparation for update
$ svn commit Sending Mk/Uses/gecko.mk Sending mail/thunderbird/Makefile Sending mail/thunderbird/distinfo Sending mail/thunderbird/files/patch-addon-search Replacing mail/thunderbird/files/patch-bug1021761 Adding mail/thunderbird/files/patch-bug1144632 Deleting mail/thunderbird/files/patch-bug1186967 [...] Transmitting file data ..........done Committing transaction... svn: E165001: Commit failed (details follow): svn: E165001: Commit blocked by pre-commit hook (exit code 1) with output: Do not replace a file. This can lose history. Path: "/head/mail/thunderbird/files/patch-bug702179" == Additional errors may compound and may not be accurate == Do not replace a file. This can lose history. Path: "/head/mail/thunderbird/files/patch-bug1021761" Do not replace a file. This can lose history. Path: "/head/mail/thunderbird/files/patch-bug1288587" Do not replace a file. This can lose history. Path: "/head/mail/thunderbird/files/patch-bug847568" Do not replace a file. This can lose history. Path: "/head/mail/thunderbird/files/patch-env-api-keys" [...] Pointy hat to: portmgr (multi-steps are error prone)
Diffstat (limited to 'mail/thunderbird/files/patch-bug1186967')
-rw-r--r--mail/thunderbird/files/patch-bug118696741
1 files changed, 0 insertions, 41 deletions
diff --git a/mail/thunderbird/files/patch-bug1186967 b/mail/thunderbird/files/patch-bug1186967
deleted file mode 100644
index 3e7b52bc3202..000000000000
--- a/mail/thunderbird/files/patch-bug1186967
+++ /dev/null
@@ -1,41 +0,0 @@
-commit 64bb4e051b50
-Author: Martin Stransky <stransky@redhat.com>
-Date: Tue Oct 17 09:50:18 2017 +0200
-
- Bug 1186967 - ignore double-click on WM without _NET_WM_MOVERESIZE support, r=jhorak
-
- MozReview-Commit-ID: 2Vs6i5leero
-
- --HG--
- extra : rebase_source : d8f2bbaf9ef9b2025478f029a68ee7e87e07de79
----
- widget/gtk/nsWindow.cpp | 16 ++++++++++++++++
- 1 file changed, 16 insertions(+)
-
-diff --git widget/gtk/nsWindow.cpp widget/gtk/nsWindow.cpp
-index eb2f0e5e95cd..955327297ac9 100644
---- mozilla/widget/gtk/nsWindow.cpp
-+++ mozilla/widget/gtk/nsWindow.cpp
-@@ -6444,6 +6444,22 @@ nsWindow::GetDragInfo(WidgetMouseEvent* aMouseEvent,
- return false;
- }
-
-+ if (mIsX11Display) {
-+ // Workaround for https://bugzilla.gnome.org/show_bug.cgi?id=789054
-+ // To avoid crashes disable double-click on WM without _NET_WM_MOVERESIZE.
-+ // See _should_perform_ewmh_drag() at gdkwindow-x11.c
-+ GdkScreen* screen = gdk_window_get_screen(gdk_window);
-+ GdkAtom atom = gdk_atom_intern("_NET_WM_MOVERESIZE", FALSE);
-+ if (!gdk_x11_screen_supports_net_wm_hint(screen, atom)) {
-+ static unsigned int lastTimeStamp = 0;
-+ if (lastTimeStamp != aMouseEvent->mTime) {
-+ lastTimeStamp = aMouseEvent->mTime;
-+ } else {
-+ return false;
-+ }
-+ }
-+ }
-+
- // FIXME: It would be nice to have the widget position at the time
- // of the event, but it's relatively unlikely that the widget has
- // moved since the mousedown. (On the other hand, it's quite likely