Skip to content

Commit

Permalink
Version Number bump to v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wdullaer committed May 2, 2015
1 parent 262b9f6 commit 4d8fc21
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ There are multiple options to add SwipeActionAdapter to your project:
Add it as a dependency to your `build.gradle`
```java
dependencies {
compile 'com.wdullaer:swipeactionadapter:1.4.0'
compile 'com.wdullaer:swipeactionadapter:1.4.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=1.4.0
VERSION_CODE=8
VERSION_NAME=1.4.1
VERSION_CODE=9
GROUP=com.wdullaer

ANDROID_BUILD_MIN_SDK_VERSION=14
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,12 @@ public SwipeViewGroup(Context context, AttributeSet attrs, int defStyle) {
initialize();
}

/**
* Common code for all the constructors
*/
private void initialize() {
// Allows click events to reach the ListView in case the row has a clickable View like a Button
// FIXME: probably messes with accessibility. Doesn't fix root cause (see onTouchEvent)
setDescendantFocusability(FOCUS_BLOCK_DESCENDANTS);
}

Expand Down

0 comments on commit 4d8fc21

Please sign in to comment.