From f28f6ad5b3bee4f92ce399d9aee5dcf7727596ed Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Mon, 10 Dec 2012 14:03:03 -0800 Subject: [PATCH] Join lines copied to the clipboard with newlines rather than nothing --- aegisub/src/command/edit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/command/edit.cpp b/aegisub/src/command/edit.cpp index 0ab79a749..3f79dd516 100644 --- a/aegisub/src/command/edit.cpp +++ b/aegisub/src/command/edit.cpp @@ -475,7 +475,7 @@ static void copy_lines(agi::Context *c) { | agi::of_type() | filtered([&](AssDialogue *d) { return sel.count(d); }) | transformed(get_entry_data), - wxS(""))); + wxS("\r\n"))); } static void delete_lines(agi::Context *c, wxString const& commit_message) {