From: Richard Kimberly Heck Date: Tue, 21 May 2019 01:23:40 +0000 (-0400) Subject: Inform user of the new name of the emergency file. X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=5c80f03807f111d54f6f81b49e159c18dd2a0752;p=features.git Inform user of the new name of the emergency file. --- diff --git a/src/Buffer.cpp b/src/Buffer.cpp index 7dbef4f18d..6665a731e1 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -4801,6 +4801,10 @@ Buffer::ReadStatus Buffer::loadEmergency() "You should do so manually. Otherwise, you will be " "asked about it again the next time you try to load " "this file, and may over-write your own work.")); + } else { + Alert::warning(_("Emergency File Renames"), + bformat(_("Emergency file renamed as:\n %1$s"), + from_utf8(newname.onlyFileName()))); } } return ReadOriginal;