diff options
author | Henrik Brautaset Aronsen <subsurface@henrik.synth.no> | 2013-02-04 09:50:43 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-05 08:33:46 +1100 |
commit | f334175bdd1ae7c622791306dd0f47ddf7f5e13e (patch) | |
tree | 427b6fc5cb28a69957cc8e7380cab16a165b2e19 /macos.c | |
parent | f6432752e3cb7f709193a7e06e299df472be5eec (diff) | |
download | subsurface-f334175bdd1ae7c622791306dd0f47ddf7f5e13e.tar.gz |
Change default MacOS font
"Arial Unicode MS" doesn't have bold fonts, at least not on my system.
This makes it impossible to distinguish trip dives from non-trip dives,
since dives without at trip have bold index numbers.
Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'macos.c')
-rw-r--r-- | macos.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,9 +18,9 @@ static GtkosxApplication *osx_app; #define SUBSURFACE_PREFERENCES CFSTR("org.hohndel.subsurface") #define ICON_NAME "Subsurface.icns" -#define UI_FONT "Arial Unicode MS 12" +#define UI_FONT "Arial 12" -const char system_divelist_default_font[] = "Arial Unicode MS 9"; +const char system_divelist_default_font[] = "Arial 10"; void subsurface_open_conf(void) { |