Properly rename defaultBookName to Initials

This commit is contained in:
Bradlee Speice
2014-12-01 23:15:40 -05:00
parent fad6e30077
commit d79f898bce
3 changed files with 2 additions and 59 deletions

View File

@ -78,7 +78,7 @@ public class BibleViewerModules {
})
.toBlocking().first();
prefs.defaultBookName(fallback.getName());
prefs.defaultBookInitials(fallback.getName());
return fallback;
} catch (NoSuchElementException e) {
// If no books are installed, there's really nothing we can do...

View File

@ -15,5 +15,6 @@ public interface BibleViewerPreferences {
@Default(ofInt = 14)
int baseTextSize();
void baseTextSize(int baseTextSize);
}