fix #330 - Most recents project menu - displaying `dub.json` is not very helpful

This commit is contained in:
Basile Burg 2018-06-15 10:00:00 +02:00
parent d0b8fd154e
commit d59aa68366
1 changed files with 11 additions and 3 deletions

View File

@ -2285,6 +2285,7 @@ var
itm: TMenuItem;
fname: string;
clickTrg: TNotifyEvent;
i: integer;
begin
srcLst := TCEMruFileList(Sender);
if srcLst.isNil then
@ -2305,11 +2306,18 @@ begin
trgMnu.Clear;
for fname in srcLst do
for i := 0 to srcLst.Count-1 do
begin
if srcLst = fFileMru then
fname := srcLst.Strings[i].extractFileName
else
fname := srcLst.Strings[i].extractFileDir.extractFileName;
itm := TMenuItem.Create(trgMnu);
itm.Hint := fname;
itm.Caption := fname.extractFileName + ' - (' + fname + ')';
itm.Hint := srcLst.Strings[i];
itm.Caption := fname + ' - (' + itm.Hint + ')';
itm.OnClick := clickTrg;
trgMnu.Add(itm);
end;