#3209 Make sure project tree is initialised when creating the plot window.

* Also ensure the main plot window is created before attempting to set a brand new plot as an MDI window.
* This ensures the MDI view controller has been created, otherwise the new plot MDI window will not be shown in the main plot window when the main plot window is created.
This commit is contained in:
Gaute Lindkvist 2018-08-17 10:54:30 +02:00
parent 2664663d17
commit 1e77c9308a
2 changed files with 5 additions and 3 deletions

View File

@ -1355,6 +1355,8 @@ RiuPlotMainWindow* RiaApplication::getOrCreateMainPlotWindow()
if (!m_mainPlotWindow)
{
createMainPlotWindow();
m_mainPlotWindow->initializeGuiNewProjectLoaded();
loadAndUpdatePlotData();
}
return m_mainPlotWindow;
}

View File

@ -39,14 +39,14 @@ RimWellLogPlot* RicNewWellLogPlotFeatureImpl::createWellLogPlot(bool showAfterCr
RimWellLogPlotCollection* wellLogPlotColl = wellLogPlotCollection();
CVF_ASSERT(wellLogPlotColl);
// Make sure the summary plot window is created
RiaApplication::instance()->getOrCreateMainPlotWindow();
RimWellLogPlot* plot = new RimWellLogPlot();
plot->setAsPlotMdiWindow();
wellLogPlotColl->wellLogPlots().push_back(plot);
// Make sure the summary plot window is created
RiaApplication::instance()->getOrCreateMainPlotWindow();
if (!plotDescription.isEmpty())
{
plot->setDescription(plotDescription);