Skip to content

Commit

Permalink
Improve parameter names
Browse files Browse the repository at this point in the history
Adress code review comment:
#51522 (comment)
  • Loading branch information
pathmapper authored and nyalldawson committed Jan 24, 2023
1 parent f15ef45 commit 64e001e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/plugins/processing/algs/qgis/TilesXYZ.py
Expand Up @@ -579,15 +579,15 @@ def initAlgorithm(self, config=None):
self.tr('HTML files (*.html)'),
optional=True))
html_title_param = QgsProcessingParameterString(self.HTML_TITLE,
self.tr('Title (Leaflet html output)'),
self.tr('Leaflet HTML output title'),
optional=True,
defaultValue='')
html_attrib_param = QgsProcessingParameterString(self.HTML_ATTRIBUTION,
self.tr('Attribution (Leaflet html output)'),
self.tr('Leaflet HTML output attribution'),
optional=True,
defaultValue='')
html_osm_param = QgsProcessingParameterBoolean(self.HTML_OSM,
self.tr('Add OSM basemap (Leaflet html output)'),
self.tr('Include OpenStreetMap basemap in Leaflet HTML output'),
defaultValue=False,
optional=True)
for param in (html_title_param, html_attrib_param, html_osm_param):
Expand Down

0 comments on commit 64e001e

Please sign in to comment.