maps: extend opacity help text with note about 0=transparent, 1=opaque (#40092)

This commit is contained in:
Frédéric Péters 2020-02-21 19:02:43 +01:00
parent 0670a5f25e
commit 63aa76b8fa
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,7 @@ class MapLayerOptions(models.Model):
validators.MinValueValidator(0),
validators.MaxValueValidator(1)],
null=True,
help_text=_('Float value between 0 and 1'),
help_text=_('Float value between 0 (transparent) and 1 (opaque)'),
)
class Meta: