Tidy up overwritten files dialogue slightly.
authorCarl Hetherington <carl@carlh.net>
Tue, 18 Oct 2011 00:24:34 +0000 (00:24 +0000)
committerCarl Hetherington <carl@carlh.net>
Tue, 18 Oct 2011 00:24:34 +0000 (00:24 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@10216 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/export_dialog.cc

index 50796f2fccd4bc092ebbcd00a806e7d8f8b7f88d..fc05b123742a4dce865b061fecec2965988726e6 100644 (file)
@@ -259,7 +259,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";
                }
        }
 }