Skip to content

Commit

Permalink
Merged hotfix/5.2.16 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
federicoiosue committed Jun 21, 2016
2 parents ac856f8 + 396aed2 commit 7b6ebca
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 374 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

MIN_SDK=14
TARGET_SDK=23
VERSION_NAME=5.2.15
VERSION_CODE=219
VERSION_NAME=5.2.16
VERSION_CODE=220
PACKAGE=it.feio.android.omninotes

# The following properties are empty defaults to allow build and can EVENTUALLY be overridden to allow:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -952,6 +952,7 @@ private void checkSortActionPerformed(MenuItem item) {
listViewPositionOffset = 16;
listViewPosition = 0;
restoreListScrollPosition();
toggleSearchLabel(false);
// Updates app widgets
BaseActivity.notifyAppWidgets(mainActivity);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ private boolean receivedIntent(Intent i) {
private boolean noteAlreadyOpened(Note note) {
DetailFragment detailFragment = (DetailFragment) mFragmentManager.findFragmentByTag(FRAGMENT_DETAIL_TAG);
return detailFragment != null && detailFragment.getCurrentNote() != null && detailFragment.getCurrentNote()
.get_id() == note.get_id();
.get_id().equals(note.get_id());
}


Expand Down

This file was deleted.

Loading

0 comments on commit 7b6ebca

Please sign in to comment.