diff --git a/app/src/main/java/com/github/axet/audiorecorder/widgets/PitchView.java b/app/src/main/java/com/github/axet/audiorecorder/widgets/PitchView.java index 07e70ec..bcda926 100644 --- a/app/src/main/java/com/github/axet/audiorecorder/widgets/PitchView.java +++ b/app/src/main/java/com/github/axet/audiorecorder/widgets/PitchView.java @@ -225,7 +225,7 @@ public class PitchView extends ViewGroup { textPaint.getTextBounds(this.text, 0, this.text.length(), textBounds); h += textBounds.height(); h += dp2px(2); - h += dp2px(pitchDlimiter + getPaddingTop() + getPaddingBottom()); + h += dp2px(pitchDlimiter) + getPaddingTop() + getPaddingBottom(); setMeasuredDimension(w, h); }