summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-10-18 00:24:34 +0000
committerCarl Hetherington <carl@carlh.net>2011-10-18 00:24:34 +0000
commit661bbc2c4e4104ec63daf5089e0ec51659ce3c2a (patch)
tree884831b374f598fa0f1bb3ce34403a5ae56ae685 /gtk2_ardour/export_dialog.cc
parentc84057d047bdc370fda3d6d6cb6f26a90560ca79 (diff)
Tidy up overwritten files dialogue slightly.
git-svn-id: svn://localhost/ardour2/branches/3.0@10216 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_dialog.cc')
-rw-r--r--gtk2_ardour/export_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/export_dialog.cc b/gtk2_ardour/export_dialog.cc
index 50796f2fcc..fc05b12374 100644
--- a/gtk2_ardour/export_dialog.cc
+++ b/gtk2_ardour/export_dialog.cc
@@ -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";
}
}
}