Skip to content

Commit

Permalink
Fixed a bug in the FastScroll where dynamically enabling and disablin…
Browse files Browse the repository at this point in the history
…g the bubble wouldn't show text
  • Loading branch information
brianwernick committed Mar 23, 2016
1 parent 9d69e4e commit 74f65b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ repositories {
dependencies {
//...
compile 'com.devbrackets.android:recyclerext:1.0.1'
compile 'com.devbrackets.android:recyclerext:1.0.2'
}
```

Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'bintray-release'

def versionMajor = 1
def versionMinor = 0
def versionPatch = 1
def versionPatch = 2

// Maven GAV
def libraryGroupId = 'com.devbrackets.android'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public void setShowBubble(boolean showBubble) {
return;
}

if ((recyclerView.getAdapter() instanceof FastScrollPopupCallbacks)) {
if (!(recyclerView.getAdapter() instanceof FastScrollPopupCallbacks)) {
Log.e(TAG, "The RecyclerView Adapter specified needs to implement " + FastScrollPopupCallbacks.class.getSimpleName());
return;
}
Expand Down

0 comments on commit 74f65b5

Please sign in to comment.