mirror of
https://github.com/MinimalBible/MinimalBible
synced 2025-07-13 03:35:20 -04:00
Add some cosmetic tweaks
Text size and color mostly
This commit is contained in:
@ -106,8 +106,9 @@ public class BibleViewerModules {
|
||||
@Provides
|
||||
@Named("MainAdapter")
|
||||
@Singleton
|
||||
BookAdapter bookAdapter(@Named("MainBook") Book b, VerseLookup v) {
|
||||
return new BookAdapter(b, v);
|
||||
BookAdapter bookAdapter(@Named("MainBook") Book b, VerseLookup v,
|
||||
BibleViewerPreferences prefs) {
|
||||
return new BookAdapter(b, v, prefs);
|
||||
}
|
||||
|
||||
@Provides
|
||||
|
@ -1,5 +1,6 @@
|
||||
package org.bspeice.minimalbible.activity.viewer;
|
||||
|
||||
import de.devland.esperandro.annotations.Default;
|
||||
import de.devland.esperandro.annotations.SharedPreferences;
|
||||
|
||||
/**
|
||||
@ -10,4 +11,9 @@ public interface BibleViewerPreferences {
|
||||
|
||||
String defaultBookName();
|
||||
void defaultBookName(String defaultBookName);
|
||||
|
||||
@Default(ofInt = 14)
|
||||
int baseTextSize();
|
||||
|
||||
void baseTextSize(int baseTextSize);
|
||||
}
|
||||
|
Reference in New Issue
Block a user