diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2013-03-15 12:21:29 +0000 |
---|---|---|
committer | David Laurence Emerson <dle3ab@angelbase.com> | 2013-05-28 00:42:47 -0700 |
commit | ceefc61fa412dca7aa797532862fe4911327b7ad (patch) | |
tree | f6ae9e9b54b6651fc3f7d13003516a7e963cba50 | |
parent | 94f20d016dd8fefadbd003fcd9064704b6cb3ab7 (diff) | |
download | fpGUI-ceefc61fa412dca7aa797532862fe4911327b7ad.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 |