Closed
Bug 228803
Opened 21 years ago
Closed 21 years ago
The contextual menu item "Open Tabs in New Window" does not work
Categories
(Camino Graveyard :: Tabbed Browsing, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
Camino0.8
People
(Reporter: dereks, Assigned: mikepinkerton)
Details
Attachments
(1 file)
1011 bytes,
patch
|
Usul
:
review+
|
Details | Diff | Splinter Review |
When you open a contextual menu for a folder that's in the bookmark toolbar one
of the items you can choose from is "Open Tabs in New Window." This menu item
isn't working. I have tried with a clean profile thinking it was something in
prefs.js or user.js and I get the same resault (Nothing happens)
Steps:
1. Open a contextual menu for a folder that's in your bookmarks toolbar menu
2. Choose "Open Tabs in New Window"
Assignee | ||
Updated•21 years ago
|
Status: NEW → ASSIGNED
Target Milestone: --- → Camino0.8
From BookmarkButton.mm:
// if we get to this else, we better be a group. check just in case i'm wrong.
else if ([item isKindOfClass:[BookmarkFolder class]]) {
if ([(BookmarkFolder *)item isGroup]) {
[brController openNewWindowWithGroupURLs:[(BookmarkFolder *)item
childURLs] loadInBackground: loadInBackground];
}
}
He was wrong :)
Problem is this fails when I think it should not:
if ([(BookmarkFolder *)item isGroup]) {
Simon?
Comment 2•21 years ago
|
||
If memory serves me correctly I have a patch around somewhere that might fix
this. IIRC isGroup checks to see if a folder is a tab group. I don't think that
we need that any more though, openNewWindowWithGroupURLs I think will still work
even even if [item isGroup] is FALSE.
Attachment #138520 -
Flags: superreview?
Attachment #138520 -
Flags: review?
Comment 4•21 years ago
|
||
Comment on attachment 138520 [details] [diff] [review]
patch v1.0
Patch is unecessary, My official 2004010403 build knows how to open, multiples
tabs from a folder in the background. However I have a folder containing two
folders, and choose to open that foldre ina a new tab nothing happens.
Attachment #138520 -
Flags: review? → review-
Comment 5•21 years ago
|
||
Comment on attachment 138520 [details] [diff] [review]
patch v1.0
Grrr Why did I opened the bookmark views to test this. Ignore above comment.
Attachment #138520 -
Flags: superreview?
Attachment #138520 -
Flags: review?
Attachment #138520 -
Flags: review-
Attachment #138520 -
Flags: review+
Assignee | ||
Comment 6•21 years ago
|
||
landed
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Assignee | ||
Updated•21 years ago
|
Attachment #138520 -
Flags: review?
Comment 7•21 years ago
|
||
Verified fixed in the 2004011103 NB under 10.3.2
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•