Skip to content

Commit

Permalink
Remove line width minimum constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilJay committed Mar 23, 2017
1 parent b564704 commit 557e556
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ public void setFillAlpha(int alpha) {
*/
public void setLineWidth(float width) {

if (width < 0.2f)
width = 0.2f;
if (width < 0.0f)
width = 0.0f;
if (width > 10.0f)
width = 10.0f;
mLineWidth = Utils.convertDpToPixel(width);
Expand Down

0 comments on commit 557e556

Please sign in to comment.