diff --git a/GUI_main/UIMainWindow.cpp b/GUI_main/UIMainWindow.cpp index a4503e7472cd629c856c9dcbc76f8e72341d8448..d639c683f2d488f755f771a7045e30601fc9bb09 100644 --- a/GUI_main/UIMainWindow.cpp +++ b/GUI_main/UIMainWindow.cpp @@ -2229,6 +2229,8 @@ void UIMainWindow::showProjectContextMenu( const QPoint& pos ) QAction *actClose = new QAction( "Close" ); connect( actRename, SIGNAL(triggered()), this, SLOT(enableProjectRenamingMode()) ); + connect( actSave , SIGNAL(triggered()), this, SLOT(saveCurrentProject()) ); + connect( actClose , SIGNAL(triggered()), this, SLOT(closeCurrentProject()) ); QMenu menu; menu.addAction( actRename );