Projet

Général

Profil

0001-maps-extend-opacity-help-text-with-note-about-0-tran.patch

Frédéric Péters, 21 février 2020 19:03

Télécharger (870 octets)

Voir les différences:

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(-)
combo/apps/maps/models.py
429 429
            validators.MinValueValidator(0),
430 430
            validators.MaxValueValidator(1)],
431 431
        null=True,
432
        help_text=_('Float value between 0 and 1'),
432
        help_text=_('Float value between 0 (transparent) and 1 (opaque)'),
433 433
    )
434 434

  
435 435
    class Meta:
436
-