Removed cafUiStyleSheet and all references to it.

This commit is contained in:
Ruben Manuel Thoms
2020-09-04 14:33:33 +02:00
committed by Magne Sjaastad
parent 9391453c2c
commit 85f2b3faf0
10 changed files with 0 additions and 477 deletions

View File

@@ -327,11 +327,6 @@ void RiuMultiPlotBook::scheduleReplotOfAllPlots()
//--------------------------------------------------------------------------------------------------
void RiuMultiPlotBook::renderTo( QPaintDevice* paintDevice )
{
for ( auto page : m_pages )
{
page->stashWidgetStates();
}
int resolution = paintDevice->logicalDpiX();
double scaling = resolution / static_cast<double>( RiaGuiApplication::applicationResolution() );
@@ -350,11 +345,6 @@ void RiuMultiPlotBook::renderTo( QPaintDevice* paintDevice )
page->renderTo( &painter, scaling );
firstPage = false;
}
for ( auto page : m_pages )
{
page->restoreWidgetStates();
}
}
//--------------------------------------------------------------------------------------------------