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

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

Issue 1752020: Remove accidental #if's. Make old folder window menu go away when mousing ove... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 8 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 | « chrome/browser/cocoa/bookmark_bar_controller.mm ('k') | 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_folder_controller.mm
===================================================================
--- chrome/browser/cocoa/bookmark_bar_folder_controller.mm (revision 45984)
+++ chrome/browser/cocoa/bookmark_bar_folder_controller.mm (working copy)
@@ -74,10 +74,6 @@
ofType:@"nib"];
if ((self = [super initWithWindowNibPath:nibPath owner:self])) {
parentButton_.reset([button retain]);
-#if 1
- // We want the button to remain bordered as part of the menu path.
- [[button cell] setShowsBorderOnlyWhileMouseInside:NO];
-#endif
parentController_.reset([parentController retain]);
barController_ = barController; // WEAK
buttons_.reset([[NSMutableArray alloc] init]);
@@ -91,11 +87,6 @@
}
- (void)dealloc {
-#if 1
- // The button is no longer part of the menu path.
- [[parentButton_ cell] setShowsBorderOnlyWhileMouseInside:YES];
- [parentButton_ setNeedsDisplay];
-#endif
[self removeScrollTracking];
[self endScroll];
[hoverState_ draggingExited];
@@ -550,12 +541,10 @@
// view that contains the button. It appears that a mouseExited:
// gets lost, so the button stays highlit forever. We accomodate
// here.
-#if 0
if (buttonThatMouseIsIn_) {
[[buttonThatMouseIsIn_ cell] setShowsBorderOnlyWhileMouseInside:NO];
[[buttonThatMouseIsIn_ cell] setShowsBorderOnlyWhileMouseInside:YES];
}
-#endif
// We update the window size after shifting the scroll to avoid a race.
CGFloat screenHeightMinusMargin = (NSHeight(screenFrame) -
« no previous file with comments | « chrome/browser/cocoa/bookmark_bar_controller.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698