#9879 Add icon for calculated summary vectors

This commit is contained in:
Magne Sjaastad 2023-03-06 18:39:08 +01:00
parent bf432f8897
commit fc7bde8d35
4 changed files with 19 additions and 4 deletions

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<polygon points="8,4 8,7 15,7 4,18 6,20 17,9 17,16 20,16 20,4 "/>
</svg>

After

Width:  |  Height:  |  Size: 418 B

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<polygon points="8,4 8,7 15,7 10,12 14,12 17,9 17,16 20,16 20,4 "/>
<rect x="6" y="14" width="8" height="3"/>
<rect x="6" y="19" width="8" height="3"/>
</svg>

After

Width:  |  Height:  |  Size: 504 B

View File

@ -39,7 +39,7 @@
<file>CorrelationPlots16x16.png</file>
<file>CorrelationReportPlot16x16.png</file>
<file>CorrelationTornadoPlot16x16.png</file>
<file>CreateGridCaseGroup16x16.png</file>
<file>CreateGridCaseGroup16x16.png</file>
<file>CrossSection16x16.png</file>
<file>CrossSections16x16.png</file>
<file>CumulativePhaseDist16x16.png</file>
@ -243,7 +243,6 @@
<file>ComboBoxDown.svg</file>
<file>ComboBoxUp.svg</file>
<file>WellIntAnalysis.png</file>
<file>DataVector.png</file>
<file>data-sources.svg</file>
<file>edit.svg</file>
<file>graph.svg</file>
@ -272,6 +271,8 @@
<file>CheckOverlay16x16.png</file>
<file>Link3DandPlots.png</file>
<file>info.png</file>
<file>DataVector.svg</file>
<file>DataVectorCalculated.svg</file>
</qresource>
<qresource prefix="/Shader">
<file>fs_CellFace.glsl</file>

View File

@ -255,7 +255,7 @@ bool RimSummaryAddress::isEnsemble() const
//--------------------------------------------------------------------------------------------------
QString RimSummaryAddress::iconResourceText() const
{
if ( m_calculationId != -1 ) return ":/summary/components/images/calculated.svg";
if ( m_calculationId != -1 ) return ":/DataVectorCalculated.svg";
return ":/DataVector.png";
return ":/DataVector.svg";
}