Skip to content

Commit

Permalink
Added onlyThumbDraggable in Readme
Browse files Browse the repository at this point in the history
This feature is not mentioned in the documents and I spent 15 minutes just to find the attribute so here is the PR ;)
  • Loading branch information
TheMaxCoder authored Oct 16, 2018
1 parent e0e7c07 commit 28bda51
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ implementation 'com.github.warkiz.widget:indicatorseekbar:2.1.0'
app:isb_track_background_color="@color/color_gray"
app:isb_track_background_size="2dp"
app:isb_track_progress_color="@color/color_blue"
app:isb_track_progress_size="4dp" />
app:isb_track_progress_size="4dp"
app:isb_only_thumb_draggable="false"/>
```

#### Java
Expand Down Expand Up @@ -86,6 +87,7 @@ implementation 'com.github.warkiz.widget:indicatorseekbar:2.1.0'
.trackProgressSize(4)
.trackBackgroundColor(getResources().getColor(R.color.color_gray))
.trackBackgroundSize(2)
.onlyThumbDraggable(false)
.build();

```
Expand Down

0 comments on commit 28bda51

Please sign in to comment.