Closed
Bug 266759
Opened 21 years ago
Closed 21 years ago
Disable Single Window Mode by default for 1.0
Categories
(Firefox :: Tabbed Browser, defect)
Firefox
Tabbed Browser
Tracking
()
VERIFIED
FIXED
People
(Reporter: bugs, Assigned: bugs)
Details
(Keywords: fixed-aviary1.0)
Attachments
(1 file, 1 obsolete file)
|
4.89 KB,
patch
|
asa
:
approval-aviary+
|
Details | Diff | Splinter Review |
There are recurring crashes related to single window mode in Firefox... we're
not having an easy time reproducing them and there are numerous issues
(window.close not working right etc)... as a result we've decided to disable the
UI that lets you set single window mode preferences for Firefox 1.0...
the disabling is being done off a pref, browser.tabs.showSingleWindowModePrefs,
which when set to true via about:config will show the UI again.
| Assignee | ||
Comment 1•21 years ago
|
||
Comment 2•21 years ago
|
||
Comment on attachment 163887 [details] [diff] [review]
patch to disable UI based on a pref
+ // XXXben - Hide Single Window mode prefs for 1.0
+ var tabbedOpenForce = document.getElementById("tabbedOpenForce");
+ var tabbedWindowLinks = document.getElementById("tabbedWindowLinks");
+ if (parent.hPrefWindow.getPref("bool",
"browser.tabs.showSingleWindowModePrefs", false)) {
+ tabbedOpenForce.hidden = false;
+ tabbedWindowLinks.hidden = false;
+ }
You could declare the two local variables inside the if check since they're not
used outside of it.
sr=jst either way tho.
Attachment #163887 -
Flags: superreview+
Comment 4•21 years ago
|
||
Comment on attachment 163890 [details] [diff] [review]
patch
a=asa for aviary checkin.
Attachment #163890 -
Flags: approval-aviary+
| Assignee | ||
Updated•21 years ago
|
Status: NEW → RESOLVED
Closed: 21 years ago
Flags: blocking-aviary1.0+
Resolution: --- → FIXED
Updated•21 years ago
|
Keywords: fixed-aviary1.0
Comment 5•21 years ago
|
||
yup, the UI is hidden: vrfy'd fixed with 200411030x-0.11 on linux fc2 and mac os
x 10.3.5.
Status: RESOLVED → VERIFIED
Comment 6•21 years ago
|
||
It's not disabled for me and I like it not being disabled.
@fantasai: Shouldn't that be re-enabled on the trunk (eg for crash testing!)? It
is disabled now since the aviary branch landing.
You need to log in
before you can comment on or make changes to this bug.
Description
•