From 2637aaee23e24fb603dc347a1738f3b757c39c06 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Fri, 30 Sep 2016 22:28:50 +1000 Subject: [PATCH] Fix finding of splash file and display in About dialog --- gtk2_ardour/about.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/about.cc b/gtk2_ardour/about.cc index eb98398f26..02d1972511 100644 --- a/gtk2_ardour/about.cc +++ b/gtk2_ardour/about.cc @@ -585,8 +585,9 @@ About::About () std::string splash_file; Searchpath spath(ardour_data_search_path()); + spath.add_subdirectory_to_paths ("resources"); - if (find_file (spath, "splash.png", splash_file)) { + if (find_file (spath, PROGRAM_NAME "-splash.png", splash_file)) { set_logo (Gdk::Pixbuf::create_from_file (splash_file)); } else { error << "Could not find splash file" << endmsg; -- 2.30.2