summaryrefslogtreecommitdiff
path: root/libs/ardour/session_directory.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-02-17 16:29:25 +0100
committerRobin Gareus <robin@gareus.org>2016-02-17 16:29:25 +0100
commit5e50a7d6cfe76f04d018f5695fd47cc837c1fb24 (patch)
treeb89c14b79712d4566ba8dd904af7a4b760080e57 /libs/ardour/session_directory.cc
parent90efd9f0100d191668b8e320664768499ade88df (diff)
allot to open OSX Finder with arbitrary paths
Diffstat (limited to 'libs/ardour/session_directory.cc')
-rw-r--r--libs/ardour/session_directory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/session_directory.cc b/libs/ardour/session_directory.cc
index 693bee2a1c..3a4d049e3a 100644
--- a/libs/ardour/session_directory.cc
+++ b/libs/ardour/session_directory.cc
@@ -163,7 +163,7 @@ SessionDirectory::sources_root () const
root_cache[m_root_path] = Glib::build_filename (sources_root_path, entries.front());
}
else if (entries.size() > 1) {
- PBD::open_uri (sources_root_path);
+ PBD::open_folder (sources_root_path);
PBD::fatal << string_compose (_("The session's interchange dir is tainted.\nThere is more than one folder in '%1'.\nPlease remove extra subdirs to reduce possible filename ambiguties."), sources_root_path) << endmsg;
assert (0); // not reached
}