Commit 4cec7676 authored by lgarron's avatar lgarron Committed by Commit bot

Change horizontal/vertical separators in OSX bubble UI to be less light.

BUG=558839

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

Cr-Commit-Position: refs/heads/master@{#361167}
parent 259626c7
......@@ -210,7 +210,7 @@
base::scoped_nsobject<NSBox> spacer([[NSBox alloc] initWithFrame:frame]);
[spacer setBoxType:NSBoxSeparator];
[spacer setBorderType:NSLineBorder];
[spacer setAlphaValue:0.2];
[spacer setAlphaValue:0.75];
return [spacer.release() autorelease];
}
......@@ -219,7 +219,7 @@
base::scoped_nsobject<NSBox> spacer([[NSBox alloc] initWithFrame:frame]);
[spacer setBoxType:NSBoxSeparator];
[spacer setBorderType:NSLineBorder];
[spacer setAlphaValue:0.2];
[spacer setAlphaValue:0.75];
return [spacer.release() autorelease];
}
......
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