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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_details_container.mm

Issue 141813005: [rAC, OSX] Fix field alignment. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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/ui/cocoa/autofill/autofill_details_container.mm
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_details_container.mm b/chrome/browser/ui/cocoa/autofill/autofill_details_container.mm
index 7206775f7937193017b3498112dd731a01fef49b..1609fd21d39bbf32c692a861bdb72d9d6c15762a 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_details_container.mm
+++ b/chrome/browser/ui/cocoa/autofill/autofill_details_container.mm
@@ -144,7 +144,7 @@ typedef BOOL (^FieldFilterBlock)(NSView<AutofillInputField>*);
return;
NSPoint scrollPoint = [clipView constrainScrollPoint:
- NSMakePoint(NSMinX(fieldRect), NSMinY(fieldRect) - bottomPadding)];
+ NSMakePoint(0, NSMinY(fieldRect) - bottomPadding)];
[clipView scrollToPoint:scrollPoint];
[scrollView_ reflectScrolledClipView:clipView];
[self updateErrorBubble];
« 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