Skip to content

Commit e52dc86

Browse files
committedSep 18, 2018
fix icons extension in copy/paste style menu
1 parent 35c954e commit e52dc86

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/app/qgsmaplayerstylecategoriesmodel.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ QVariant QgsMapLayerStyleCategoriesModel::data( const QModelIndex &index, int ro
128128
case Qt::ToolTipRole:
129129
return tr( "Aliases, widgets, WMS/WFS, expressions, constraints, virtual fields" );
130130
case Qt::DecorationRole:
131-
return QgsApplication::getThemeIcon( QStringLiteral( "/mSourceFields" ) );
131+
return QgsApplication::getThemeIcon( QStringLiteral( "/mSourceFields.svg" ) );
132132
}
133133
break;
134134
case QgsMapLayer::Forms:
@@ -139,7 +139,7 @@ QVariant QgsMapLayerStyleCategoriesModel::data( const QModelIndex &index, int ro
139139
case Qt::ToolTipRole:
140140
return QVariant();
141141
case Qt::DecorationRole:
142-
return QgsApplication::getThemeIcon( QStringLiteral( "/mActionFormView" ) );
142+
return QgsApplication::getThemeIcon( QStringLiteral( "/mActionFormView.svg" ) );
143143
}
144144
break;
145145
case QgsMapLayer::Actions:
@@ -183,7 +183,7 @@ QVariant QgsMapLayerStyleCategoriesModel::data( const QModelIndex &index, int ro
183183
case Qt::ToolTipRole:
184184
return tr( "Choice and order of columns, conditional styling" );
185185
case Qt::DecorationRole:
186-
return QgsApplication::getThemeIcon( QStringLiteral( "/mActionOpenTable" ) );
186+
return QgsApplication::getThemeIcon( QStringLiteral( "/mActionOpenTable.svg" ) );
187187
}
188188
break;
189189
case QgsMapLayer::Rendering:

0 commit comments

Comments
 (0)
Please sign in to comment.