Commit fca73bef authored by wesleylancel's avatar wesleylancel Committed by Commit bot

Increase vertical offset for profile bubble by 2 pixels

BUG=460475

Review URL: https://codereview.chromium.org/945293002

Cr-Commit-Position: refs/heads/master@{#318776}
parent 447f6430
...@@ -178,7 +178,7 @@ class ProfileInfoUpdateObserver : public ProfileInfoCacheObserver, ...@@ -178,7 +178,7 @@ class ProfileInfoUpdateObserver : public ProfileInfoCacheObserver,
NSMaxX([anchor bounds]) - kMenuXOffsetAdjust : NSMaxX([anchor bounds]) - kMenuXOffsetAdjust :
NSMidX([anchor bounds]); NSMidX([anchor bounds]);
NSPoint point = NSMakePoint(anchorX, NSPoint point = NSMakePoint(anchorX,
NSMaxY([anchor bounds]) - kMenuYOffsetAdjust); NSMaxY([anchor bounds]) + kMenuYOffsetAdjust);
point = [anchor convertPoint:point toView:nil]; point = [anchor convertPoint:point toView:nil];
point = [[anchor window] convertBaseToScreen:point]; point = [[anchor window] convertBaseToScreen:point];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment