notify when route group/group tab color changes
[ardour.git] / gtk2_ardour / export_dialog.cc
index 50796f2fccd4bc092ebbcd00a806e7d8f8b7f88d..2097b2d15321df8239b57d8b4d83a50af006a045 100644 (file)
@@ -62,6 +62,7 @@ ExportDialog::set_session (ARDOUR::Session* s)
 
        handler = _session->get_export_handler ();
        status = _session->get_export_status ();
+
        profile_manager.reset (new ExportProfileManager (*_session, xml_node_name));
 
        /* Possibly init stuff in derived classes */
@@ -259,7 +260,7 @@ ExportDialog::update_warnings ()
                list_files_hbox.show ();
                for (std::list<string>::iterator it = warnings->conflicting_filenames.begin(); it != warnings->conflicting_filenames.end(); ++it) {
                        string::size_type pos = it->find_last_of ("/");
-                       list_files_string += "\n" + it->substr (0, pos + 1) + "<b>" + it->substr (pos + 1) + "</b>";
+                       list_files_string += it->substr (0, pos + 1) + "<b>" + it->substr (pos + 1) + "</b>\n";
                }
        }
 }