Skip to content

Commit

Permalink
v2.29.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Neamar committed Feb 16, 2017
1 parent ac5fbcd commit 7a709eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId 'fr.neamar.kiss'
minSdkVersion 14
targetSdkVersion 22
versionCode 91
versionName "2.29.1"
versionCode 92
versionName "2.29.2"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/java/fr/neamar/kiss/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ private void displayQuickFavoritesBar(boolean initialize, boolean touched) {
View quickFavoritesBar = findViewById(R.id.favoritesBar);
if (searchEditText.getText().toString().length() == 0
&& prefs.getBoolean("enable-favorites-bar", false)) {
if ((!prefs.getBoolean("favorites-hide", false) || touched)) {
if((!prefs.getBoolean("favorites-hide", false) || touched)) {
quickFavoritesBar.setVisibility(View.VISIBLE);
}

Expand Down Expand Up @@ -800,7 +800,6 @@ public void hideKeyboard() {

/**
* Check if history / search or app list is visible
*
* @return true of history, false on app list
*/
public boolean isOnSearchView() {
Expand Down

0 comments on commit 7a709eb

Please sign in to comment.