diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-08-07 00:07:46 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-08-07 00:07:46 +0200 |
| commit | f18a6eca3631dcced7b2ff6d3d22afdb51499843 (patch) | |
| tree | ed6917c66e98ad8aa4a5da26faada872ee160493 | |
| parent | 77caf229eaf62d52e41be89ce9c6ca60ed807358 (diff) | |
Reduce width of information text in the copy-to-drive job.
| -rw-r--r-- | src/lib/copy_to_drive_job.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/copy_to_drive_job.cc b/src/lib/copy_to_drive_job.cc index 0fb41f856..f78d3d3c5 100644 --- a/src/lib/copy_to_drive_job.cc +++ b/src/lib/copy_to_drive_job.cc @@ -53,7 +53,7 @@ CopyToDriveJob::CopyToDriveJob (boost::filesystem::path dcp, Drive drive, Nanoms string CopyToDriveJob::name () const { - return String::compose (_("Copying %1 to %2"), _dcp.filename().string(), _drive.description()); + return String::compose (_("Copying %1\nto %2"), _dcp.filename().string(), _drive.description()); } string |
