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

Unified Diff: chrome/browser/cocoa/location_bar/location_bar_view_mac.mm

Issue 2980014: [Mac] Fix page-action positioning for flipped field. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 years, 5 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/location_bar/location_bar_view_mac.mm
diff --git a/chrome/browser/cocoa/location_bar/location_bar_view_mac.mm b/chrome/browser/cocoa/location_bar/location_bar_view_mac.mm
index b31ce913e67e34d06035e730b9e723b41be1df8f..53e20f2244ba5a1a881fbe05fa4f6daf61eb848e 100644
--- a/chrome/browser/cocoa/location_bar/location_bar_view_mac.mm
+++ b/chrome/browser/cocoa/location_bar/location_bar_view_mac.mm
@@ -314,7 +314,7 @@ NSPoint LocationBarViewMac::GetPageActionBubblePoint(
NSRect frame = [cell pageActionFrameForIndex:index inFrame:[field_ bounds]];
if (!NSIsEmptyRect(frame)) {
frame = [field_ convertRect:frame toView:nil];
- return NSMakePoint(NSMidX(frame), NSMinY(frame));
+ return NSMakePoint(NSMidX(frame), NSMaxY(frame));
}
NOTREACHED();
« 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