Skip to content

Commit e591d1c

Browse files
committed
new nice icon for Extract projection tool. Thanks, Robert!
1 parent 9d11354 commit e591d1c

4 files changed

Lines changed: 2 additions & 2 deletions

File tree

python/plugins/GdalTools/GdalTools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def initGui( self ):
115115
self.projection.setStatusTip( QCoreApplication.translate( "GdalTools", "Add projection info to the raster" ) )
116116
QObject.connect( self.projection, SIGNAL( "triggered()" ), self.doProjection )
117117

118-
self.extractProj = QAction( QIcon( ":icons/extract-projection.png" ), QCoreApplication.translate( "GdalTools", "Extract projection" ), self.iface.mainWindow() )
118+
self.extractProj = QAction( QIcon( ":icons/projection-export.png" ), QCoreApplication.translate( "GdalTools", "Extract projection" ), self.iface.mainWindow() )
119119
self.extractProj.setStatusTip( QCoreApplication.translate( "GdalTools", "Extract projection information from raster(s)" ) )
120120
QObject.connect( self.extractProj, SIGNAL( "triggered()" ), self.doExtractProj )
121121

-1.55 KB
Binary file not shown.
1.55 KB
Loading

python/plugins/GdalTools/resources.qrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
<file>icons/tileindex.png</file>
2121
<file>icons/about.png</file>
2222
<file>icons/dem.png</file>
23-
<file>icons/extract-projection.png</file>
23+
<file>icons/projection-export.png</file>
2424
</qresource>
2525
</RCC>

0 commit comments

Comments
 (0)