Skip to content

Commit

Permalink
Fix settings not storing the active book
Browse files Browse the repository at this point in the history
  • Loading branch information
Bradlee Speice committed Jan 19, 2015
1 parent 34f89e5 commit b57b826
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -36,7 +36,7 @@ protected View onCreateView(ViewGroup parent) {
for (int i = 0; i < books.size(); i++) {
Book b = books.get(i);
entries[i] = b.getName();
entryValues[i] = b.getName();
entryValues[i] = b.getInitials();
}

setEntries(entries);
Expand Down

0 comments on commit b57b826

Please sign in to comment.