Closed
Bug 297984
Opened 20 years ago
Closed 19 years ago
all.js sets prefs that are duplicated in all-camino.js
Categories
(Camino Graveyard :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
Camino1.0
People
(Reporter: kbrosnan, Assigned: mark)
References
()
Details
Attachments
(1 file)
|
2.35 KB,
patch
|
Details | Diff | Splinter Review |
I was working on a Mac bug for Firefox and was going to transfer a Camino
preferences patch to Firefox. MConner pointed out that the settings were already
present in all.js. So I took a look at all-camino.js and found several lines
that are the same as all.js
all.js 746-748 = all-camino.js 94-96
// enable horizontal scroll by shift+wheel
pref("mousewheel.horizscroll.withshiftkey.action", 0);
pref("mousewheel.horizscroll.withshiftkey.numlines", 1);
pref("mousewheel.horizscroll.withshiftkey.sysnumline", true);
all.js 740-742 = all-camino.js 99-101
// enable horizontal scrolling with horizontal scroll wheels
pref("mousewheel.horizscroll.withnokey.action",0);
pref("mousewheel.horizscroll.withnokey.numlines",1);
pref("mousewheel.horizscroll.withnokey.sysnumlines",true);
all.js 761 = all-camino.js 104
pref("mousewheel.horizscroll.withaltkey.action", 2);
I also took out the comment about fonts. All told this trims about a 1000 bytes.| Reporter | ||
Comment 1•20 years ago
|
||
Updated•19 years ago
|
Assignee: mikepinkerton → mark
| Assignee | ||
Comment 2•19 years ago
|
||
Fixed with the checkin from bug 293503.
Status: NEW → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
Updated•19 years ago
|
OS: Windows XP → MacOS X
Target Milestone: --- → Camino1.0
You need to log in
before you can comment on or make changes to this bug.
Description
•