Skip to content

Commit

Permalink
Fix setter name
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Lecoeur committed May 3, 2017
1 parent db8dc27 commit ff841ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void setPropsMaxStrokeWidth(RSSignatureCaptureMainView view, @Nullable in
}

@ReactProp(name = PROPS_STROKE_COLOR)
public void setPropsBackgroundColor(RSSignatureCaptureMainView view, @Nullable String color) {
public void setPropsStrokeColor(RSSignatureCaptureMainView view, @Nullable String color) {
Log.d("strokeColor:", ""+color);
if(view!=null){
view.getSignatureView().setStrokeColor(Color.parseColor(color));
Expand Down

0 comments on commit ff841ce

Please sign in to comment.