Skip to content

Commit 7990ec4

Browse files
andreasneumannjef-n
authored andcommittedApr 13, 2013
replace brush icon for clearing fields with more abstract icon
1 parent 1a8232f commit 7990ec4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎images/images.qrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193
<file>themes/default/mIconClose.png</file>
194194
<file>themes/default/mIconCollapse.png</file>
195195
<file>themes/default/mIconConnect.png</file>
196-
<file>themes/default/mIconClear.png</file>
196+
<file>themes/default/mIconClear.svg</file>
197197
<file>themes/default/mIconCritical.png</file>
198198
<file>themes/default/mIconDbSchema.png</file>
199199
<file>themes/default/mIconDelete.png</file>

‎src/gui/qgsfilterlineedit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ QgsFilterLineEdit::QgsFilterLineEdit( QWidget* parent, QString nullValue )
2626
, mNullValue( nullValue )
2727
{
2828
btnClear = new QToolButton( this );
29-
btnClear->setIcon( QgsApplication::getThemeIcon( "/mIconClear.png" ) );
29+
btnClear->setIcon( QgsApplication::getThemeIcon( "/mIconClear.svg" ) );
3030
btnClear->setCursor( Qt::ArrowCursor );
3131
btnClear->setFocusPolicy( Qt::NoFocus );
3232
btnClear->setStyleSheet( "QToolButton { border: none; padding: 0px; }" );

0 commit comments

Comments
 (0)
Please sign in to comment.