From 029af8474e551ee355f74aa3cbf87c8816d98230 Mon Sep 17 00:00:00 2001 From: "Dmitry D. Chernov" Date: Tue, 12 Sep 2023 03:59:52 +1000 Subject: [PATCH] Fix mixed up message and title when opening a non-existent recent file --- src/editor/f_main.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/f_main.pas b/src/editor/f_main.pas index 0c912cf..e5389bd 100644 --- a/src/editor/f_main.pas +++ b/src/editor/f_main.pas @@ -2548,7 +2548,7 @@ begin if FileExists(fn) then OpenMap(fn, g_ExtractFilePathName(s)) else - Application.MessageBox('', 'File not available anymore', MB_OK); + Application.MessageBox('File not available anymore', '', MB_OK); // if Application.MessageBox(PChar(MsgMsgDelRecentPrompt), PChar(MsgMsgDelRecent), MB_ICONQUESTION or MB_YESNO) = idYes then // begin // RecentFiles.Delete(n); -- 2.29.2