From b70843930750a2a6928ee0fa3cd72936a15e14e1 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 8 Jun 2016 15:51:33 +0200 Subject: [PATCH] fix user color file name --- gtk2_ardour/ui_config.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/ui_config.cc b/gtk2_ardour/ui_config.cc index 5df4a9e63c..a762b544cb 100644 --- a/gtk2_ardour/ui_config.cc +++ b/gtk2_ardour/ui_config.cc @@ -266,7 +266,7 @@ UIConfiguration::color_file_name (bool use_my, bool with_program, bool with_vers basename += "my-"; } - basename = color_file.get(); //this is the overall theme file, e.g. "dark" + basename += color_file.get(); //this is the overall theme file, e.g. "dark" if (with_program) { basename += '-';