Skip to content

Commit 94fb18b

Browse files
committed
new icons for RGB to PCT and PCT to RGB tools from Robert
1 parent 21fa9cd commit 94fb18b

File tree

5 files changed

+4
-3
lines changed

5 files changed

+4
-3
lines changed

python/plugins/GdalTools/GdalTools.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,11 @@ def initGui( self ):
140140
self.translate.setStatusTip( QCoreApplication.translate( "GdalTools", "Converts raster data between different formats") )
141141
QObject.connect( self.translate, SIGNAL( "triggered()" ), self.doTranslate )
142142

143-
self.paletted = QAction( QIcon( ":icons/raster-paletted.png" ), QCoreApplication.translate( "GdalTools", "RGB to PCT" ), self.iface.mainWindow() )
143+
self.paletted = QAction( QIcon( ":icons/24-to-8-bits.png" ), QCoreApplication.translate( "GdalTools", "RGB to PCT" ), self.iface.mainWindow() )
144144
self.paletted.setStatusTip( QCoreApplication.translate( "GdalTools", "Convert a 24bit RGB image to 8bit paletted" ) )
145145
QObject.connect( self.paletted, SIGNAL( "triggered()" ), self.doPaletted )
146146

147-
self.rgb = QAction( QIcon( ":icons/raster-paletted.png" ), QCoreApplication.translate( "GdalTools", "PCT to RGB" ), self.iface.mainWindow() )
147+
self.rgb = QAction( QIcon( ":icons/8-to-24-bits.png" ), QCoreApplication.translate( "GdalTools", "PCT to RGB" ), self.iface.mainWindow() )
148148
self.rgb.setStatusTip( QCoreApplication.translate( "GdalTools", "Convert an 8bit paletted image to 24bit RGB" ) )
149149
QObject.connect( self.rgb, SIGNAL( "triggered()" ), self.doRGB )
150150

766 Bytes
Loading
775 Bytes
Loading
Binary file not shown.

python/plugins/GdalTools/resources.qrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@
1515
<file>icons/projection-add.png</file>
1616
<file>icons/raster-overview.png</file>
1717
<file>icons/raster-clip.png</file>
18-
<file>icons/raster-paletted.png</file>
1918
<file>icons/raster-rgb.png</file>
2019
<file>icons/tileindex.png</file>
2120
<file>icons/about.png</file>
2221
<file>icons/dem.png</file>
2322
<file>icons/projection-export.png</file>
2423
<file>icons/fillnodata.png</file>
24+
<file>icons/24-to-8-bits.png</file>
25+
<file>icons/8-to-24-bits.png</file>
2526
<file>icons/edit.png</file>
2627
<file>icons/reset.png</file>
2728
<file>icons/tooltip.png</file>

0 commit comments

Comments
 (0)