Skip to content

Commit

Permalink
Typeface Bold
Browse files Browse the repository at this point in the history
  • Loading branch information
walmsley authored Feb 22, 2019
1 parent 9e246cf commit 3cc47bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions loopview/src/main/java/com/weigan/loopview/LoopView.java
Original file line number Diff line number Diff line change
Expand Up @@ -194,14 +194,14 @@ private void initPaints() {
paintOuterText = new Paint();
paintOuterText.setColor(outerTextColor);
paintOuterText.setAntiAlias(true);
paintOuterText.setTypeface(Typeface.MONOSPACE);
paintOuterText.setTypeface(Typeface.DEFAULT);
paintOuterText.setTextSize(textSize);

paintCenterText = new Paint();
paintCenterText.setColor(centerTextColor);
paintCenterText.setAntiAlias(true);
paintCenterText.setTextScaleX(scaleX);
paintCenterText.setTypeface(Typeface.MONOSPACE);
paintCenterText.setTypeface(Typeface.DEFAULT_BOLD);
paintCenterText.setTextSize(textSize);

paintIndicator = new Paint();
Expand Down

0 comments on commit 3cc47bd

Please sign in to comment.