mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +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" {
|
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;
|
const int system_divelist_default_font_size = 8;
|
||||||
|
|
||||||
|
void subsurface_OS_pref_setup(void)
|
||||||
|
{
|
||||||
|
// nothing
|
||||||
|
}
|
||||||
|
|
||||||
const char *system_default_filename(void)
|
const char *system_default_filename(void)
|
||||||
{
|
{
|
||||||
/* Replace this when QtCore/QStandardPaths getExternalStorageDirectory landed */
|
/* Replace this when QtCore/QStandardPaths getExternalStorageDirectory landed */
|
||||||
|
|
Loading…
Add table
Reference in a new issue