We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 277cbe5 commit e4e5fefCopy full SHA for e4e5fef
core/java/android/webkit/WebTextView.java
@@ -237,15 +237,13 @@ protected void onDraw(Canvas canvas) {
237
private void growOrShrink(boolean grow) {
238
AbsoluteLayout.LayoutParams lp = (AbsoluteLayout.LayoutParams) getLayoutParams();
239
if (grow) {
240
- Log.i("webtextview", "grow");
241
lp.x -= mRingInset;
242
lp.y -= mRingInset;
243
lp.width += 2 * mRingInset;
244
lp.height += 2 * mRingInset;
245
setPadding(getPaddingLeft() + mRingInset, getPaddingTop() + mRingInset,
246
getPaddingRight() + mRingInset, getPaddingBottom() + mRingInset);
247
} else {
248
- Log.i("webtextview", "shrink");
249
lp.x += mRingInset;
250
lp.y += mRingInset;
251
lp.width -= 2 * mRingInset;
0 commit comments