From 63aa76b8fadf62ed6b46be81ec258781c6ed3a15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 21 Feb 2020 19:02:43 +0100 Subject: [PATCH] maps: extend opacity help text with note about 0=transparent, 1=opaque (#40092) --- combo/apps/maps/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/combo/apps/maps/models.py b/combo/apps/maps/models.py index 600ada55..26af1f7d 100644 --- a/combo/apps/maps/models.py +++ b/combo/apps/maps/models.py @@ -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: