mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Merge pull request #4630 from OPM/release-adjustments
Release adjustments
This commit is contained in:
commit
4b92427a4d
@ -268,8 +268,6 @@ void RiaPreferences::defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering&
|
|||||||
viewsGroup->add(&showHud);
|
viewsGroup->add(&showHud);
|
||||||
|
|
||||||
caf::PdmUiGroup* otherGroup = uiOrdering.addNewGroup("Other");
|
caf::PdmUiGroup* otherGroup = uiOrdering.addNewGroup("Other");
|
||||||
otherGroup->add(&m_dateFormat);
|
|
||||||
otherGroup->add(&m_timeFormat);
|
|
||||||
otherGroup->add(&ssihubAddress);
|
otherGroup->add(&ssihubAddress);
|
||||||
otherGroup->add(&showLasCurveWithoutTvdWarning);
|
otherGroup->add(&showLasCurveWithoutTvdWarning);
|
||||||
otherGroup->add(&holoLensDisableCertificateVerification);
|
otherGroup->add(&holoLensDisableCertificateVerification);
|
||||||
@ -300,10 +298,12 @@ void RiaPreferences::defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering&
|
|||||||
group->add(&summaryEnsembleImportMode);
|
group->add(&summaryEnsembleImportMode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (uiConfigName == RiaPreferences::tabNameEclipseSummary())
|
else if (uiConfigName == RiaPreferences::tabNamePlotting())
|
||||||
{
|
{
|
||||||
uiOrdering.add(&defaultSummaryCurvesTextFilter);
|
uiOrdering.add(&defaultSummaryCurvesTextFilter);
|
||||||
uiOrdering.add(&defaultSummaryHistoryCurveStyle);
|
uiOrdering.add(&defaultSummaryHistoryCurveStyle);
|
||||||
|
uiOrdering.add(&m_dateFormat);
|
||||||
|
uiOrdering.add(&m_timeFormat);
|
||||||
}
|
}
|
||||||
else if (uiConfigName == RiaPreferences::tabNameScripting())
|
else if (uiConfigName == RiaPreferences::tabNameScripting())
|
||||||
{
|
{
|
||||||
@ -426,9 +426,9 @@ QString RiaPreferences::tabNameEclipse()
|
|||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
///
|
///
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
QString RiaPreferences::tabNameEclipseSummary()
|
QString RiaPreferences::tabNamePlotting()
|
||||||
{
|
{
|
||||||
return "Summary";
|
return "Plotting";
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
@ -464,7 +464,7 @@ QStringList RiaPreferences::tabNames()
|
|||||||
|
|
||||||
names << tabNameGeneral();
|
names << tabNameGeneral();
|
||||||
names << tabNameEclipse();
|
names << tabNameEclipse();
|
||||||
names << tabNameEclipseSummary();
|
names << tabNamePlotting();
|
||||||
names << tabNameScripting();
|
names << tabNameScripting();
|
||||||
names << tabNameExport();
|
names << tabNameExport();
|
||||||
|
|
||||||
|
@ -135,7 +135,7 @@ protected:
|
|||||||
private:
|
private:
|
||||||
static QString tabNameGeneral();
|
static QString tabNameGeneral();
|
||||||
static QString tabNameEclipse();
|
static QString tabNameEclipse();
|
||||||
static QString tabNameEclipseSummary();
|
static QString tabNamePlotting();
|
||||||
static QString tabNameScripting();
|
static QString tabNameScripting();
|
||||||
static QString tabNameExport();
|
static QString tabNameExport();
|
||||||
static QString tabNameSystem();
|
static QString tabNameSystem();
|
||||||
|
@ -438,7 +438,9 @@ std::vector<QString> RiaQDateTimeTools::supportedDateFormats()
|
|||||||
dateFormats.push_back("yy;M/yy;d/M/yy");
|
dateFormats.push_back("yy;M/yy;d/M/yy");
|
||||||
dateFormats.push_back("yy;M/yy;M/d/yy");
|
dateFormats.push_back("yy;M/yy;M/d/yy");
|
||||||
dateFormats.push_back("yyyy;MM-yyyy;dd-MM-yyyy");
|
dateFormats.push_back("yyyy;MM-yyyy;dd-MM-yyyy");
|
||||||
|
dateFormats.push_back("yyyy;MM.yyyy;dd.MM.yyyy");
|
||||||
dateFormats.push_back("yyyy;MM-yyyy;MM-dd-yyyy");
|
dateFormats.push_back("yyyy;MM-yyyy;MM-dd-yyyy");
|
||||||
|
dateFormats.push_back("yyyy;MM.yyyy;MM.dd.yyyy");
|
||||||
dateFormats.push_back("yy;MM-yy;dd-MM-yy");
|
dateFormats.push_back("yy;MM-yy;dd-MM-yy");
|
||||||
dateFormats.push_back("yy;MM-yy;MM-dd-yy");
|
dateFormats.push_back("yy;MM-yy;MM-dd-yy");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user