Skip to content

Commit

Permalink
allow setting of max programatically for issue neild001#6
Browse files Browse the repository at this point in the history
  • Loading branch information
scottyab committed Dec 29, 2015
1 parent 67948ac commit 83ecbbd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions SeekArc_library/src/com/triggertrap/seekarc/SeekArc.java
Original file line number Diff line number Diff line change
Expand Up @@ -576,4 +576,11 @@ public void setArcColor(int color) {
invalidate();
}

public int getMax() {
return mMax;
}

public void setMax(int mMax) {
this.mMax = mMax;
}
}

0 comments on commit 83ecbbd

Please sign in to comment.