Skip to content

Commit

Permalink
replacing some png icons with svg ones
Browse files Browse the repository at this point in the history
  • Loading branch information
slarosa committed Aug 31, 2015
1 parent eee7191 commit 30407c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/gui/qgsvariableeditorwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ QgsVariableEditorWidget::QgsVariableEditorWidget( QWidget *parent )
QSpacerItem* horizontalSpacer = new QSpacerItem( 40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
horizontalLayout->addItem( horizontalSpacer );
mAddButton = new QPushButton();
mAddButton->setIcon( QgsApplication::getThemeIcon( "/mActionSignPlus.png" ) );
mAddButton->setIcon( QgsApplication::getThemeIcon( "/symbologyAdd.svg" ) );
mAddButton->setEnabled( false );
horizontalLayout->addWidget( mAddButton );
mRemoveButton = new QPushButton();
mRemoveButton->setIcon( QgsApplication::getThemeIcon( "/symbologyRemove.png" ) );
mRemoveButton->setIcon( QgsApplication::getThemeIcon( "/symbologyRemove.svg" ) );
mRemoveButton->setEnabled( false );
horizontalLayout->addWidget( mRemoveButton );
verticalLayout->addLayout( horizontalLayout );
Expand Down
2 changes: 1 addition & 1 deletion src/ui/qgsoptionsbase.ui
Original file line number Diff line number Diff line change
Expand Up @@ -4658,7 +4658,7 @@
</item>
</layout>
</widget>
<widget class="QWidget" name="page">
<widget class="QWidget" name="mOptionsPageVariables">
<layout class="QVBoxLayout" name="verticalLayout_40">
<item>
<widget class="QGroupBox" name="groupBox_25">
Expand Down

0 comments on commit 30407c3

Please sign in to comment.