#3260 Well Path Export. Add command to main window export menu

This commit is contained in:
Bjørn Erik Jensen 2018-09-25 11:42:47 +02:00
parent b9c5c13dd2
commit 9aad8b6947

View File

@ -436,6 +436,7 @@ void RiuMainWindow::createMenus()
exportMenu->addSeparator();
exportMenu->addAction(cmdFeatureMgr->action("RicSaveEclipseInputActiveVisibleCellsFeature"));
exportMenu->addAction(cmdFeatureMgr->action("RicExportCompletionsForVisibleWellPathsFeature"));
exportMenu->addAction(cmdFeatureMgr->action("RicExportVisibleWellPathsFeature"));
fileMenu->addSeparator();
fileMenu->addAction(cmdFeatureMgr->action("RicSaveProjectFeature"));
@ -808,6 +809,7 @@ void RiuMainWindow::slotRefreshFileActions()
QStringList commandIdList;
commandIdList << "RicExportCompletionsForVisibleWellPathsFeature";
commandIdList << "RicExportVisibleWellPathsFeature";
cmdFeatureMgr->refreshStates(commandIdList);
}