diff --git a/ApplicationCode/UserInterface/RiuQwtSymbol.cpp b/ApplicationCode/UserInterface/RiuQwtSymbol.cpp index 3aeee2cb64..39cab1b5d1 100644 --- a/ApplicationCode/UserInterface/RiuQwtSymbol.cpp +++ b/ApplicationCode/UserInterface/RiuQwtSymbol.cpp @@ -133,6 +133,15 @@ RiuQwtSymbol::RiuQwtSymbol( PointSymbolEnum riuStyle, const QString& label, Labe void RiuQwtSymbol::renderSymbols( QPainter* painter, const QPointF* points, int numPoints ) const { QwtSymbol::renderSymbols( painter, points, numPoints ); + + if ( !m_globalLabel.isEmpty() ) + { + for ( int i = 0; i < numPoints; i++ ) + { + auto position = points[i]; + renderSymbolLabel( painter, position, m_globalLabel ); + } + } } //--------------------------------------------------------------------------------------------------