From d9da9a7752668ff94b6d73a88567873909500af0 Mon Sep 17 00:00:00 2001 From: Gaute Lindkvist Date: Tue, 12 Feb 2019 17:00:29 +0100 Subject: [PATCH] #4053 Add ensemble input to import toolbar + geomech import toolbar --- ApplicationCode/UserInterface/RiuMainWindow.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ApplicationCode/UserInterface/RiuMainWindow.cpp b/ApplicationCode/UserInterface/RiuMainWindow.cpp index 54cde32d98..fb9f67dde1 100644 --- a/ApplicationCode/UserInterface/RiuMainWindow.cpp +++ b/ApplicationCode/UserInterface/RiuMainWindow.cpp @@ -540,8 +540,18 @@ void RiuMainWindow::createToolBars() toolbar->addAction(cmdFeatureMgr->action("RicImportEclipseCaseFeature")); toolbar->addAction(cmdFeatureMgr->action("RicImportInputEclipseCaseFeature")); toolbar->addAction(cmdFeatureMgr->action("RicImportSummaryCaseFeature")); + toolbar->addAction(cmdFeatureMgr->action("RicImportEnsembleFeature")); toolbar->hide(); } + { +#ifdef USE_ODB_API + QToolBar* toolbar = addToolBar(tr("Import GeoMech")); + toolbar->addAction(cmdFeatureMgr->action("RicImportGeoMechCaseFeature")); + toolbar->addAction(cmdFeatureMgr->action("RicImportGeoMechCaseTimeStepFilterFeature")); + toolbar->addAction(cmdFeatureMgr->action("RicImportElementPropertyFeature")); + toolbar->hide(); +#endif + } { QToolBar* toolbar = addToolBar(tr("Window Management"));