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

Unified Diff: mobile/android/base/java/org/mozilla/gecko/toolbar/BrowserToolbarPhoneBase.java

Issue 29986555: Issue 7200 - Adjust UI colors (Closed)
Patch Set: Created Jan. 21, 2019, 6:56 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
Index: mobile/android/base/java/org/mozilla/gecko/toolbar/BrowserToolbarPhoneBase.java
===================================================================
--- a/mobile/android/base/java/org/mozilla/gecko/toolbar/BrowserToolbarPhoneBase.java
+++ b/mobile/android/base/java/org/mozilla/gecko/toolbar/BrowserToolbarPhoneBase.java
@@ -58,18 +58,17 @@
focusOrder.addAll(urlDisplayLayout.getFocusOrder());
focusOrder.addAll(Arrays.asList(tabsButton, menuButton));
roundCornerShape = new Path();
updateRoundCornerShape();
roundCornerPaint = new Paint();
roundCornerPaint.setAntiAlias(true);
- // Using ABB color palette. See https://issues.adblockplus.org/ticket/3769
- roundCornerPaint.setColor(ContextCompat.getColor(context, R.color.abb_background_light_grey));
+ roundCornerPaint.setColor(ContextCompat.getColor(context, R.color.text_and_tabs_tray_grey));
roundCornerPaint.setStrokeWidth(0.0f);
}
private void updateRoundCornerShape() {
roundCornerShape.reset();
if (ViewCompat.getLayoutDirection(this) == ViewCompat.LAYOUT_DIRECTION_RTL) {
int right = getRight();
roundCornerShape.moveTo(right, 0);

Powered by Google App Engine
This is Rietveld