Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1245)

Unified Diff: chrome/browser/cocoa/bookmark_bar_controller.mm

Issue 1585010: Fix bookmarks on subfolder. Introduced with http://codereview.chromium.org/1... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/bookmark_bar_controller.mm
===================================================================
--- chrome/browser/cocoa/bookmark_bar_controller.mm (revision 43292)
+++ chrome/browser/cocoa/bookmark_bar_controller.mm (working copy)
@@ -519,9 +519,8 @@
}
// If a click in a bookmark bar folder window and that isn't
// one of my bookmark bar folders, YES is click outside.
- if ([eventWindow isKindOfClass:[BookmarkBarFolderWindow
- class]] &&
- [eventWindow parentWindow] != myWindow) {
+ if (![eventWindow isKindOfClass:[BookmarkBarFolderWindow
+ class]]) {
return YES;
}
break;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698