diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2013-03-15 12:21:29 +0000 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@gmail.com> | 2013-03-15 15:08:37 +0000 |
commit | bf949cb2ef2ef24339ea4ba5c5928b15b8afe310 (patch) | |
tree | 8513a26511986db6452642bbf452ac5df38660b8 | |
parent | 72e93ee732db27d10150cfd978353dc951122570 (diff) | |
download | fpGUI-bf949cb2ef2ef24339ea4ba5c5928b15b8afe310.tar.xz |
ide: Project -> Save As... will add new name to Recent Files list.
-rw-r--r-- | examples/apps/ide/src/frm_main.pas | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/apps/ide/src/frm_main.pas b/examples/apps/ide/src/frm_main.pas index 92d5243e..e13f102b 100644 --- a/examples/apps/ide/src/frm_main.pas +++ b/examples/apps/ide/src/frm_main.pas @@ -471,6 +471,7 @@ begin s := s + cProjectExt; try GProject.Save(s); + FRecentFiles.AddItem(s); except on E: Exception do begin |