From a839df0d13e463d833f43ed420e8cfd9dda94dff Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 29 Sep 2020 22:06:36 +0200 Subject: [PATCH] Make use of default_font_file(). --- src/lib/render_text.cc | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/src/lib/render_text.cc b/src/lib/render_text.cc index f08662678..f9c04dc4d 100644 --- a/src/lib/render_text.cc +++ b/src/lib/render_text.cc @@ -25,6 +25,7 @@ #include "font.h" #include "dcpomatic_assert.h" #include "warnings.h" +#include "util.h" #include #include #include @@ -139,19 +140,7 @@ setup_font (StringText const& subtitle, list > const& fonts) fc_config = FcInitLoadConfig (); } - optional font_file; - - try { - font_file = resources_path() / "LiberationSans-Regular.ttf"; - } catch (boost::filesystem::filesystem_error& e) { - - } - - /* Hack: try the debian/ubuntu locations if getting the shared path failed */ - - if (!font_file || !boost::filesystem::exists(*font_file)) { - font_file = "/usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf"; - } + optional font_file = default_font_file (); BOOST_FOREACH (shared_ptr i, fonts) { if (i->id() == subtitle.font() && i->file()) { -- 2.30.2