You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, glad to once again thank you for the great library :)
There is a little typo bug in the FastScroller.java
/** * If enabled, it will keep handle always visible with 50% transparency. * <p>Default value is {@code false}.</p> * * @param enabled true to keep the handle always visible, false to hide always * @since 5.0.5 */publicvoidsetHandleAlwaysVisible(booleanenabled) {
handleAlwaysVisible = enabled;
}
But should be as:
/** * If enabled, it will keep handle always visible with 50% transparency. * <p>Default value is {@code false}.</p> * * @param enabled true to keep the handle always visible, false to hide always * @since 5.0.5 */publicvoidsetHandleAlwaysVisible(booleanenabled) {
//ignoreTouchesOutsideHandle = enabled;handleAlwaysVisible = enabled;
}
The text was updated successfully, but these errors were encountered:
Hi, glad to once again thank you for the great library :)
There is a little typo bug in the FastScroller.java
But should be as:
The text was updated successfully, but these errors were encountered: