Improve look of Multi plots

This commit is contained in:
Gaute Lindkvist
2020-06-09 15:09:40 +02:00
parent 8f359d8a92
commit 7ad7e5d285
2 changed files with 3 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ RimPlotWindow::RimPlotWindow()
CAF_PDM_InitFieldNoDefault( &m_titleFontSize, "TitleFontSize", "Title Font Size", "", "", "" );
CAF_PDM_InitFieldNoDefault( &m_legendFontSize, "LegendDeltaFontSize", "Legend Font Size", "", "", "" );
m_titleFontSize = caf::FontTools::RelativeSize::XLarge;
m_titleFontSize = caf::FontTools::RelativeSize::XXLarge;
m_legendFontSize = caf::FontTools::RelativeSize::Small;
}

View File

@@ -79,7 +79,7 @@ RiuMultiPlotPage::RiuMultiPlotPage( RimPlotWindow* plotDefinition, QWidget* pare
m_layout = new QVBoxLayout( this );
m_layout->setMargin( 0 );
m_layout->setSpacing( 2 );
m_layout->setSpacing( 4 );
m_plotTitle = createTitleLabel();
m_layout->addWidget( m_plotTitle );
@@ -94,7 +94,7 @@ RiuMultiPlotPage::RiuMultiPlotPage( RimPlotWindow* plotDefinition, QWidget* pare
m_gridLayout = new QGridLayout( m_plotWidgetFrame );
m_gridLayout->setContentsMargins( 0, 0, 0, 0 );
m_gridLayout->setSpacing( 1 );
m_gridLayout->setSpacing( 5 );
new RiuPlotObjectPicker( m_plotTitle, m_plotDefinition );