Index: mobile/android/base/tabs/TabStripView.java |
=================================================================== |
--- a/mobile/android/base/tabs/TabStripView.java |
+++ b/mobile/android/base/tabs/TabStripView.java |
@@ -388,11 +388,16 @@ |
final boolean pressed = (child.isPressed() || getChildAt(i - 1).isPressed()); |
final boolean checked = (i == checkedIndex || i == checkedIndex + 1); |
+ // We don't show the tab curves in Adblock Browser, so we always |
+ // want to draw the dividers. |
+ // See https://issues.adblockplus.org/ticket/2932. |
+ /* |
// Don't draw dividers for around checked or pressed items |
// so that they are not drawn on top of the tab curves. |
if (pressed || checked) { |
continue; |
} |
+ */ |
final int left = child.getLeft() - (itemMargin / 2) - dividerWidth; |
final int right = left + dividerWidth; |