mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Fix android font config
In e893f6bd9d
("Use the Windows default
font on Windows 7 and 8/8.1") font config was changed, but the android
font config wasn't changed. This updates the android font config to
match the new way.
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
7575eb44df
commit
65eec59739
1 changed files with 7 additions and 1 deletions
|
@ -11,9 +11,15 @@
|
|||
|
||||
extern "C" {
|
||||
|
||||
const char system_divelist_default_font[] = "Roboto";
|
||||
const char android_system_divelist_default_font[] = "Roboto";
|
||||
const char *system_divelist_default_font = android_system_divelist_default_font;
|
||||
const int system_divelist_default_font_size = 8;
|
||||
|
||||
void subsurface_OS_pref_setup(void)
|
||||
{
|
||||
// nothing
|
||||
}
|
||||
|
||||
const char *system_default_filename(void)
|
||||
{
|
||||
/* Replace this when QtCore/QStandardPaths getExternalStorageDirectory landed */
|
||||
|
|
Loading…
Reference in a new issue