mirror of
https://github.com/MinimalBible/MinimalBible
synced 2024-11-04 23:28:19 -05:00
Fix settings not storing the active book
This commit is contained in:
parent
34f89e5cfd
commit
b57b82677f
@ -36,7 +36,7 @@ public class AvailableBookPreference extends ListPreference {
|
|||||||
for (int i = 0; i < books.size(); i++) {
|
for (int i = 0; i < books.size(); i++) {
|
||||||
Book b = books.get(i);
|
Book b = books.get(i);
|
||||||
entries[i] = b.getName();
|
entries[i] = b.getName();
|
||||||
entryValues[i] = b.getName();
|
entryValues[i] = b.getInitials();
|
||||||
}
|
}
|
||||||
|
|
||||||
setEntries(entries);
|
setEntries(entries);
|
||||||
|
Loading…
Reference in New Issue
Block a user