Fix settings not storing the active book

parser-fixes
Bradlee Speice 2015-01-18 22:47:48 -05:00
parent 34f89e5cfd
commit b57b82677f
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public class AvailableBookPreference extends ListPreference {
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);