summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ui_config.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/ui_config.cc')
-rw-r--r--gtk2_ardour/ui_config.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk2_ardour/ui_config.cc b/gtk2_ardour/ui_config.cc
index 67117c2f2f..0890f6531b 100644
--- a/gtk2_ardour/ui_config.cc
+++ b/gtk2_ardour/ui_config.cc
@@ -300,12 +300,14 @@ UIConfiguration::load_color_theme (bool allow_own)
PBD::Searchpath sp (user_config_directory());
- if (find_file (sp, color_file_name (true, running_from_source, true), cfile)) {
+ /* user's own color files never have the program name in them */
+
+ if (find_file (sp, color_file_name (true, false, true), cfile)) {
found = true;
}
if (!found) {
- if (find_file (sp, color_file_name (true, running_from_source, false), cfile)) {
+ if (find_file (sp, color_file_name (true, false, false), cfile)) {
found = true;
}
}