mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Adjustments for release
* Make sure text for multiple wells in same grid cell is displayed correctly * Improve selection of result in Advanced Snapshot Export * Restore the main window that was on top when project was saved * Trim string to make sure '/' is exported with no space in front * #9872 RFT-plot: Make colors stable for curves in RFT plots * Set version to RC_02
This commit is contained in:
@@ -142,7 +142,7 @@ void RiuAdvancedSnapshotExportWidget::addSnapshotItemFromActiveView()
|
||||
if ( eclipseView )
|
||||
{
|
||||
multiSnapshot->eclipseResultType = eclipseView->cellResult()->resultType();
|
||||
multiSnapshot->selectedEclipseResults.v().push_back( eclipseView->cellResult()->resultVariable() );
|
||||
multiSnapshot->setSelectedEclipseResults( eclipseView->cellResult()->resultVariable() );
|
||||
}
|
||||
multiSnapshot->timeStepStart = activeView->currentTimeStep();
|
||||
multiSnapshot->timeStepEnd = activeView->currentTimeStep();
|
||||
@@ -198,10 +198,7 @@ QString RiuAdvancedSnapshotExportWidget::exportFolder() const
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiuAdvancedSnapshotExportWidget::customMenuRequested( QPoint pos )
|
||||
{
|
||||
caf::CmdFeatureManager* commandManager = caf::CmdFeatureManager::instance();
|
||||
|
||||
QMenu menu;
|
||||
menu.addAction( commandManager->action( "PdmListField_DeleteItem", "Delete row" ) );
|
||||
|
||||
QAction* newRowAction = new QAction( "New row", this );
|
||||
connect( newRowAction, SIGNAL( triggered() ), SLOT( addSnapshotItem() ) );
|
||||
|
||||
@@ -1177,7 +1177,7 @@ QString RiuResultTextBuilder::wellResultText()
|
||||
const int outletSegmentId = wellResultCell->outletSegmentId();
|
||||
|
||||
text += QString( "-- Well-cell connection info --\n Well Name: %1\n Branch Id: %2\n Segment "
|
||||
"Id: %3\n Outlet Branch Id: %4\n Outlet Segment Id: %5" )
|
||||
"Id: %3\n Outlet Branch Id: %4\n Outlet Segment Id: %5\n" )
|
||||
.arg( singleWellResultData->m_wellName )
|
||||
.arg( branchId )
|
||||
.arg( segmentId )
|
||||
|
||||
Reference in New Issue
Block a user