Skip to content

Commit

Permalink
Fix for #6
Browse files Browse the repository at this point in the history
  • Loading branch information
Lesilva committed Apr 12, 2015
1 parent bc375ba commit 962cd60
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_NAME=1.0.5
VERSION_CODE=105
VERSION_NAME=1.0.6
VERSION_CODE=106
GROUP=com.weiwangcn.betterspinner

POM_DESCRIPTION=Android Spinner in a Better Design
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ protected void onFocusChanged(boolean focused, int direction,
imm.hideSoftInputFromWindow(getWindowToken(), 0);
setKeyListener(null);
dismissDropDown();
} else {
isPopup = false;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ protected void onFocusChanged(boolean focused, int direction,
imm.hideSoftInputFromWindow(getWindowToken(), 0);
setKeyListener(null);
dismissDropDown();
} else {
isPopup = false;
}
}

Expand Down

0 comments on commit 962cd60

Please sign in to comment.