From a76afae0e9ffa8a44311d6f9c1d8dbc613bfc089 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 8 Nov 2024 17:16:12 -0700 Subject: [PATCH] use smaller ("very small") text for rulers on macOS This fixes a years-long visual issue with the rulers on macOS, where the text has been MUCH larger than on Linux (and maybe Windows, not sure) --- gtk2_ardour/editor_rulers.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_rulers.cc b/gtk2_ardour/editor_rulers.cc index 8c20e1348b..41491ff4b5 100644 --- a/gtk2_ardour/editor_rulers.cc +++ b/gtk2_ardour/editor_rulers.cc @@ -134,7 +134,11 @@ Editor::initialize_rulers () { ruler_grabbed_widget = 0; - Pango::FontDescription font (UIConfiguration::instance().get_SmallerFont()); +#ifdef __APPLE__ + Pango::FontDescription font (UIConfiguration::instance().get_VerySmallFont()); +#else + Pango::FontDescription font (UIConfiguration::instance().get_SmallFont()); +#endif Pango::FontDescription larger_font (UIConfiguration::instance().get_SmallBoldFont()); _timecode_metric = new TimecodeMetric (this);