Skip to content

Commit a11a54b

Browse files
author
timlinux
committedMar 12, 2011
On discussion with Robert, also use desaturated icons for layer type icons. Updated stop rendering icon with one contributed by Robert.
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@15455 c8812cc2-4d05-0410-92ff-de0c093fc19c

26 files changed

+4143
-1
lines changed
 

‎images/images.qrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,9 @@
170170
<file>themes/default/mIconProjectionProblem.png</file>
171171
<file>themes/default/mIconProperties.png</file>
172172
<file>themes/default/mIconPyramid.png</file>
173+
<file>themes/default/mIconStopRendering.png</file>
174+
<file>themes/default/mIconRenderingEnabled.png</file>
175+
<file>themes/default/mIconRenderingDisabled.png</file>
173176
<file>themes/default/mIconSymbology.png</file>
174177
<file>themes/default/mIconTableLayer.png</file>
175178
<file>themes/default/mIconUnknownLayerType.png</file>
901 Bytes

Error rendering embedded code

Invalid image source.

-330 Bytes

Error rendering embedded code

Invalid image source.

-638 Bytes

Error rendering embedded code

Invalid image source.

991 Bytes

Error rendering embedded code

Invalid image source.

‎images/themes/default/mIconRenderingDisabled.svg

Lines changed: 655 additions & 0 deletions

Error rendering embedded code

Invalid image source.

752 Bytes

Error rendering embedded code

Invalid image source.

‎images/themes/default/mIconRenderingEnabled.svg

Lines changed: 639 additions & 0 deletions

Error rendering embedded code

Invalid image source.

939 Bytes

Error rendering embedded code

Invalid image source.

‎images/themes/default/mIconStopRendering.svg

Lines changed: 649 additions & 0 deletions

Error rendering embedded code

Invalid image source.

-379 Bytes

Error rendering embedded code

Invalid image source.

‎images/themes/gis/mIconEditable.png

1.02 KB

Error rendering embedded code

Invalid image source.

‎images/themes/gis/mIconLineLayer.png

739 Bytes

Error rendering embedded code

Invalid image source.

‎images/themes/gis/mIconLineLayer.svg

Lines changed: 544 additions & 0 deletions

Error rendering embedded code

Invalid image source.

‎images/themes/gis/mIconPointLayer.png

447 Bytes

Error rendering embedded code

Invalid image source.

‎images/themes/gis/mIconPointLayer.svg

Lines changed: 539 additions & 0 deletions

Error rendering embedded code

Invalid image source.

820 Bytes

Error rendering embedded code

Invalid image source.

‎images/themes/gis/mIconPolygonLayer.svg

Lines changed: 525 additions & 0 deletions

Error rendering embedded code

Invalid image source.

‎images/themes/gis/mIconTableLayer.png

695 Bytes

Error rendering embedded code

Invalid image source.

‎images/themes/gis/mIconTableLayer.svg

Lines changed: 588 additions & 0 deletions

Error rendering embedded code

Invalid image source.

901 Bytes

Error rendering embedded code

Invalid image source.

54 Bytes

Error rendering embedded code

Invalid image source.

-90 Bytes

Error rendering embedded code

Invalid image source.

0 Bytes

Error rendering embedded code

Invalid image source.

203 Bytes

Error rendering embedded code

Invalid image source.

‎src/app/qgisapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,7 @@ void QgisApp::createStatusBar()
12371237
mStopRenderButton = new QToolButton( statusBar() );
12381238
mStopRenderButton->setMaximumWidth( 20 );
12391239
mStopRenderButton->setMaximumHeight( 20 );
1240-
mStopRenderButton->setIcon( getThemeIcon( "mIconDelete.png" ) );
1240+
mStopRenderButton->setIcon( getThemeIcon( "mIconStopRendering.png" ) );
12411241
mStopRenderButton->setToolTip( tr( "Stop map rendering" ) );
12421242
statusBar()->addPermanentWidget( mStopRenderButton, 0 );
12431243
// render suppression status bar widget

0 commit comments

Comments
 (0)
Please sign in to comment.