| Index: chrome/browser/cocoa/cookies_window_controller.mm
|
| ===================================================================
|
| --- chrome/browser/cocoa/cookies_window_controller.mm (revision 37852)
|
| +++ chrome/browser/cocoa/cookies_window_controller.mm (working copy)
|
| @@ -306,6 +306,13 @@
|
| children = [item childNodes];
|
| DCHECK_EQ([children count], 1U);
|
| [outlineView expandItem:[children lastObject]];
|
| + // Select the first node in that child set.
|
| + NSTreeNode* folderChild = [children lastObject];
|
| + if ([[folderChild childNodes] count] > 0) {
|
| + NSTreeNode* firstCookieChild =
|
| + [[folderChild childNodes] objectAtIndex:0];
|
| + [treeController_ setSelectionIndexPath:[firstCookieChild indexPath]];
|
| + }
|
| }
|
| }
|
| }
|
|
|