File tree Expand file tree Collapse file tree 4 files changed +6
-1
lines changed
java/com/github/droidworksstudio/launcher Expand file tree Collapse file tree 4 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ class FontAdapter(
34
34
return when (item) {
35
35
Constants .Fonts .Bitter -> ResourcesCompat .getFont(context, R .font.bitter)
36
36
Constants .Fonts .DroidSans -> ResourcesCompat .getFont(context, R .font.open_sans)
37
+ Constants .Fonts .GreatVibes -> ResourcesCompat .getFont(context, R .font.great_vibes)
37
38
Constants .Fonts .Lato -> ResourcesCompat .getFont(context, R .font.lato)
38
39
Constants .Fonts .Lobster -> ResourcesCompat .getFont(context, R .font.lobster)
39
40
Constants .Fonts .Merriweather -> ResourcesCompat .getFont(context, R .font.merriweather)
@@ -45,7 +46,7 @@ class FontAdapter(
45
46
Constants .Fonts .Roboto -> ResourcesCompat .getFont(context, R .font.roboto)
46
47
Constants .Fonts .SourceCodePro -> ResourcesCompat .getFont(context, R .font.source_code_pro)
47
48
// Add other fonts as needed
48
- else -> Typeface . DEFAULT
49
+ else -> ResourcesCompat .getFont(context, R .font.roboto)
49
50
}
50
51
}
51
52
}
Original file line number Diff line number Diff line change @@ -167,6 +167,7 @@ object Constants {
167
167
System ,
168
168
Bitter ,
169
169
DroidSans ,
170
+ GreatVibes ,
170
171
Lato ,
171
172
Lobster ,
172
173
Merriweather ,
@@ -183,6 +184,7 @@ object Constants {
183
184
System -> Typeface .DEFAULT
184
185
Bitter -> ResourcesCompat .getFont(context, R .font.bitter)
185
186
DroidSans -> ResourcesCompat .getFont(context, R .font.open_sans)
187
+ GreatVibes -> ResourcesCompat .getFont(context, R .font.great_vibes)
186
188
Lato -> ResourcesCompat .getFont(context, R .font.lato)
187
189
Lobster -> ResourcesCompat .getFont(context, R .font.lobster)
188
190
Merriweather -> ResourcesCompat .getFont(context, R .font.merriweather)
@@ -201,6 +203,7 @@ object Constants {
201
203
System -> context.getString(R .string.settings_font_system)
202
204
Bitter -> context.getString(R .string.settings_font_bitter)
203
205
DroidSans -> context.getString(R .string.settings_font_droidsans)
206
+ GreatVibes -> context.getString(R .string.settings_font_greatvibes)
204
207
Lato -> context.getString(R .string.settings_font_lato)
205
208
Lobster -> context.getString(R .string.settings_font_lobster)
206
209
Merriweather -> context.getString(R .string.settings_font_merriweather)
Original file line number Diff line number Diff line change 27
27
28
28
<string name =" settings_font_bitter" translatable =" false" >Bitter</string >
29
29
<string name =" settings_font_droidsans" translatable =" false" >Droid Sans</string >
30
+ <string name =" settings_font_greatvibes" translatable =" false" >Great Vibes</string >
30
31
<string name =" settings_font_lato" translatable =" false" >Lato</string >
31
32
<string name =" settings_font_lobster" translatable =" false" >Lobster</string >
32
33
<string name =" settings_font_merriweather" translatable =" false" >Merriweather</string >
You can’t perform that action at this time.
0 commit comments