Skip to content

Commit

Permalink
fix the size of the Timeline graph points (#433)
Browse files Browse the repository at this point in the history
Co-authored-by: Jian-Syuan (Shane) Wong <shanewong@google.com>
  • Loading branch information
jswong65 and jswong65 authored Nov 3, 2021
1 parent 0852556 commit d782fcb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ static float lockAttributeMin(String attr, float current) {
static class Attribute {
String mType;
MonotoneSpline spline;
int[] xPoints = new int[1000];
int[] yPoints = new int[1000];
int[] xPoints = new int[2000];
int[] yPoints = new int[2000];
double mMin;
double mMax;

Expand Down

0 comments on commit d782fcb

Please sign in to comment.