Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: mobile/android/base/toolbar/BrowserToolbarPhoneBase.java

Issue 29348083: Issue 3769 - UI colours gone bad (Closed)
Patch Set: Adjusting comments which indicates what has being changed by this issue in upstream code Created Oct. 25, 2016, 12:16 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mobile/android/base/toolbar/BrowserToolbar.java ('k') | mobile/android/base/toolbar/NavButton.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mobile/android/base/toolbar/BrowserToolbarPhoneBase.java
===================================================================
--- a/mobile/android/base/toolbar/BrowserToolbarPhoneBase.java
+++ b/mobile/android/base/toolbar/BrowserToolbarPhoneBase.java
@@ -59,17 +59,18 @@ abstract class BrowserToolbarPhoneBase e
roundCornerShape = new Path();
roundCornerShape.moveTo(0, 0);
roundCornerShape.lineTo(30, 0);
roundCornerShape.cubicTo(0, 0, 0, 0, 0, 30);
roundCornerShape.lineTo(0, 0);
roundCornerPaint = new Paint();
roundCornerPaint.setAntiAlias(true);
- roundCornerPaint.setColor(ColorUtils.getColor(context, R.color.text_and_tabs_tray_grey));
+ // Using ABB color palette. See https://issues.adblockplus.org/ticket/3769
+ roundCornerPaint.setColor(ColorUtils.getColor(context, R.color.abb_background_light_grey));
roundCornerPaint.setStrokeWidth(0.0f);
}
@Override
public void onAttachedToWindow() {
super.onAttachedToWindow();
editCancel.setOnClickListener(new OnClickListener() {
« no previous file with comments | « mobile/android/base/toolbar/BrowserToolbar.java ('k') | mobile/android/base/toolbar/NavButton.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld