Skip to content

Commit

Permalink
[processing][gdaltools] reword merge option (fix #8519)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed May 24, 2016
1 parent 8ad1e3c commit c69665b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/plugins/GdalTools/tools/widgetMerge.ui
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
<item> <item>
<widget class="QCheckBox" name="separateCheck"> <widget class="QCheckBox" name="separateCheck">
<property name="text"> <property name="text">
<string>Layer stack</string> <string>Place each input file into a separate band</string>
</property> </property>
</widget> </widget>
</item> </item>
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/merge.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def defineCharacteristics(self):
self.addParameter(ParameterBoolean(merge.PCT, self.addParameter(ParameterBoolean(merge.PCT,
self.tr('Grab pseudocolor table from first layer'), False)) self.tr('Grab pseudocolor table from first layer'), False))
self.addParameter(ParameterBoolean(merge.SEPARATE, self.addParameter(ParameterBoolean(merge.SEPARATE,
self.tr('Layer stack'), False)) self.tr('Place each input file into a separate band'), False))
self.addParameter(ParameterSelection(self.RTYPE, self.addParameter(ParameterSelection(self.RTYPE,
self.tr('Output raster type'), self.TYPE, 5)) self.tr('Output raster type'), self.TYPE, 5))


Expand Down

1 comment on commit c69665b

@mirandadam
Copy link

@mirandadam mirandadam commented on c69665b May 24, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awsome! Thanks a lot! I had forgotten about this already, but it is still important. I am trying to get more users to using QGis that had no previous contact with serious gis before. Small things like this go a long way.

A reference to the original issue follows: http://hub.qgis.org/issues/8519

Please sign in to comment.