From a45d5a1192d03b4e9920049f785206f92ef7d492 Mon Sep 17 00:00:00 2001 From: axelvonkamp Date: Mon, 10 Jun 2024 11:45:26 +0200 Subject: [PATCH] add projects "saved as" on recently used models list --- cnapy/gui_elements/main_window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cnapy/gui_elements/main_window.py b/cnapy/gui_elements/main_window.py index be50d27..3cf9043 100644 --- a/cnapy/gui_elements/main_window.py +++ b/cnapy/gui_elements/main_window.py @@ -1493,6 +1493,7 @@ def save_project_as(self): filename += ".cna" self.set_current_filename(filename) self.save_project() + self.update_recently_used_models(filename) # TODO: are there really situations where _all_ maps need to be recreated? def recreate_maps(self):