Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-client/seamonkey/files: seamonkey-2.1b3-restore-tabbar-scrolling-from-2.1b2.diff
Date: Sun, 03 Jul 2011 19:45:39
Message-Id: 20110703182532.51EC22004B@flycatcher.gentoo.org
1 polynomial-c 11/07/03 18:25:32
2
3 Added:
4 seamonkey-2.1b3-restore-tabbar-scrolling-from-2.1b2.diff
5 Log:
6 New major version
7
8 (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 www-client/seamonkey/files/seamonkey-2.1b3-restore-tabbar-scrolling-from-2.1b2.diff
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/files/seamonkey-2.1b3-restore-tabbar-scrolling-from-2.1b2.diff?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/seamonkey/files/seamonkey-2.1b3-restore-tabbar-scrolling-from-2.1b2.diff?rev=1.1&content-type=text/plain
15
16 Index: seamonkey-2.1b3-restore-tabbar-scrolling-from-2.1b2.diff
17 ===================================================================
18 # This patch reverts the change from
19 # https://bugzilla.mozilla.org/show_bug.cgi?id=643294
20
21 --- comm-2.0/suite/browser/tabbrowser.xml
22 +++ comm-2.0/suite/browser/tabbrowser.xml
23 @@ -3000,7 +3000,7 @@
24
25 <destructor>
26 <![CDATA[
27 - window.removeEventListener("resize", this, false);
28 + document.removeEventListener("resize", this, false);
29 ]]>
30 </destructor>
31
32 @@ -3123,13 +3123,6 @@
33 this._handleNewTab(event.target);
34 ]]>
35 </handler>
36 -
37 - <handler event="DOMMouseScroll" phase="capturing">
38 - <![CDATA[
39 - this.advanceSelectedTab(event.detail < 0 ? -1 : 1);
40 - event.stopPropagation();
41 - ]]>
42 - </handler>
43 </handlers>
44 </binding>